//------------------------------------------------------------------------------- // 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 Binding_Record_Type extends step.core.StepCoreObject { private static String EntityName = "BINDING_RECORD_TYPE"; private String cpu_name_; private String address_space_name_; 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(); cpu_name_ = ""; address_space_name_ = ""; } public Binding_Record_Type () { initializeExplicitAttributes(); } public Binding_Record_Type (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setCpuName ( String _v ) { cpu_name_ = _v; } public String getCpuName() { return cpu_name_; } public void setAddressSpaceName ( String _v ) { address_space_name_ = _v; } public String getAddressSpaceName() { return address_space_name_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Binding_Record_Type) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Binding_Record_TypeStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }