1 package cve.core.elementLDL; 2 3 import java.util.*; 4 5 public class ElementoCve implements IElementoCve{ 6 private String tipo; 7 private String id; 8 private Class eleCve; 9 private Collection parameter; 10 private String description; 11 12 public ElementoCve(){ 13 } 14 15 public ElementoCve(String tipo, String id,Class eelCve) { 16 eleCve=eelCve; 17 this.tipo=tipo; 18 this.id=id; 19 } 20 21 public ElementoCve(String tipo, String id,Class eelCve, Collection param) { 22 eleCve=eelCve; 23 this.tipo=tipo; 24 this.id=id; 25 parameter=param; } 27 28 public Class getClassCve(){ 29 return eleCve; 30 } 31 32 public String getTipo(){ 33 return tipo; 34 } 35 36 public Collection getParameters(){ 37 return parameter; 38 } 39 40 public void setParameters(Collection par){ 41 parameter=par; 42 } 43 44 public void setTipo(String tipo) { 45 this.tipo=tipo; 46 } 47 48 public String getId() { 49 return id; 50 } 51 52 public void setId(String id) { 53 } 55 56 public void setDescription(String descr){ 57 description=descr; 58 } 59 60 public String getDescription(){ 61 return description; 62 } 63 64 } 65 66 67 68 | Popular Tags |