1 /*2 * ElementTechnologyDescriptor.java3 *4 * Created on 2. duben 2002, 20:185 */6 7 package SOFA.Connector.EEG;8 9 /**10 *11 * @author ghort12 * @version 13 */14 public class ElementsTechnologyDescriptor {15 16 public String type;17 18 public String instanceName;19 20 public ElementTechnologyDescriptor[] technologies;21 22 /** Creates new ElementTechnologyDescriptor */23 public ElementsTechnologyDescriptor() {24 }25 26 }27