1 /* $Id: CompObjectIm.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.SOFAnode.Made.CDL;3 4 /** implementation of the CompObject interface */5 abstract class CompObjectIm implements CompObject{6 int okind;7 public CompObjectIm(int ok) { okind = ok; }8 public int objectKind() { return okind; }9 public boolean isContainer() {return false;}10 // public void checkConsist(EnumList props, CompRepository rep) throws CDLExceptCheck, CDLExceptLock, CDLExceptRemote {}11 }12