//------------------------------------------------------------------------------- // This package was automatically generated from EXPRESS (ISO STEP 10303 part11) // by a java generator build with the meta CASE tool Platypus // (alain.plantec@univ-brest.fr) // // Please, be aware that any hand-made updating of this file can be lost!!. //------------------------------------------------------------------------------- package CheddarBridge; import java.util.*; import step.core.*; public class Generic_Object extends step.core.StepCoreObject { private static String EntityName = "GENERIC_OBJECT"; private Objects_Type object_type_; public static String EntityName() { return EntityName; } public String entityName() { return EntityName(); } public boolean isInstanceOf(String entName) { return entName.equals(EntityName); } public boolean isKindOf(String entName) { return entName.equals(EntityName) ? true : super.isKindOf(entName); } public void initializeExplicitAttributes() { super.initializeExplicitAttributes(); object_type_ = Objects_Type.Buffer_Object_Type; } public Generic_Object () { initializeExplicitAttributes(); } public Generic_Object (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setObjectType ( Objects_Type _v ) { object_type_ = _v; } public Objects_Type getObjectType() { return object_type_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Generic_Object) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Generic_ObjectStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }