package pt.ist.renderers.schemas; import java.util.ArrayList; import java.util.List; public class Signature { private String name; private List parameters; public Signature(String name) { super(); this.name = name; this.parameters = new ArrayList(); } public String getName() { return this.name; } public List getParameters() { return this.parameters; } public void addParameter(SchemaSlotDescription slotDescription, Class slotType) { getParameters().add(new SignatureParameter(slotDescription, slotType)); } }