//------------------------------------------------------------------------------- // 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 Pseudo_Partition extends ARINC_653_Object { private static String EntityName = "PSEUDO_PARTITION"; private String Name_; private String PhysicalAddress_; private String partition_procedure_; 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(); Name_ = null; PhysicalAddress_ = null; partition_procedure_ = null; } public Pseudo_Partition () { initializeExplicitAttributes(); } public Pseudo_Partition (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setName ( String _v ) { Name_ = _v; } public String getName() { return Name_; } public void setPhysicalAddress ( String _v ) { PhysicalAddress_ = _v; } public String getPhysicalAddress() { return PhysicalAddress_; } public void setPartitionProcedure ( String _v ) { partition_procedure_ = _v; } public String getPartitionProcedure() { return partition_procedure_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Pseudo_Partition) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Pseudo_PartitionStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }