/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package LOGIC; import java.io.Serializable; /** * * @author sarah */ public class DatatypeElement implements Serializable { private String name; private String type; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } }