c58adbe51150a3662c5204f3c049a28ddeca69f7.svn-base 630 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
/*
* 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<DatatypeElement> datatype;

public List<DatatypeElement> getDatatype() {
return datatype;
}

public void setDatatype(List<DatatypeElement> datatype) {
this.datatype = datatype;
}

//construtor
public Datatype(List<DatatypeElement> datatype) {

this.datatype = datatype;
}
}