KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > CDL > CompProperty


1 /* $Id: CompProperty.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
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