/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package LOGIC; import java.io.Serializable; import java.util.LinkedList; import java.util.List; /** * * @author sarah */ public class Datatype extends Type implements Serializable{ private List datatype; public List getDatatype() { return datatype; } public void setDatatype(List datatype) { this.datatype = datatype; } //construtor public Datatype(List datatype) { this.datatype = datatype; } }