KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* $Id: CompStructMember.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
2 package SOFA.SOFAnode.Made.CDL;
3
4 class CompStructMember extends CompContainedIm {
5   public CompType tp;
6
7   public CompStructMember(ID id, CompContainer parent, CompRepository rep, CompType t) {
8     super(ObjectsKind.o_StructMember, id, parent, rep);
9     id.version = ((CompContained)parent).getIdent().version;
10     tp = t;
11   }
12
13   public void checkConsist(EnumList props, CompRepository rep) throws CDLExceptCheck, CDLExceptLock, CDLExceptRemote {
14     tp.checkConsist(props, rep);
15   }
16 }
17
Popular Tags