1 2 package SOFA.SOFAnode.Made.CDL; 3 4 class CompProperty extends CompContainedIm { 5 public CompType tp; 6 7 public CompProperty(ID id, CompContainer parent, CompRepository rep, CompType t) { 8 super(ObjectsKind.o_Property, id, parent, rep); 9 id.version = ((CompContained)parent).getIdent().version; 10 tp = t; 11 } 12 13 public void checkConsist(EnumList props, CompRepository rep) {} 14 } 15 | Popular Tags |