1 package cve.core.elementLDL;2 3 import java.util.*;4 5 public interface IElementoCve {6 String getId();7 String getTipo();8 void setTipo(String tipo);9 Class getClassCve();10 Collection getParameters(); // info aggiuntive associate con il descrittore11 void setParameters(Collection par);12 void setDescription(String descr);13 String getDescription();14 }15