/*
 * IdASoubor.java
 *
 * Created on 23. říjen 2004, 20:10
 */
package cz.zcu.icskal.sqldb;

/**
 *
 * @author  Martin
 *
 * Pomocna trida pro predavani typu id a nazvu souboru
 */
public class IdASoubor {
   private String typ;
   private Integer id;
   private String soubor;
   
   /** Creates a new instance of IdASoubor */
   public IdASoubor(String typ, Integer id, String soubor) {
      this.typ = typ;
      this.id = id;
      this.soubor = soubor;
   }
   
   public String getTyp() {
      return typ;
   }
   public Integer getId() {
      return id;
   }
   public String getSoubor() {
      return soubor;
   }
   
}
