//------------------------------------------------------------------------------- // 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 Memory_Requirements extends ARINC_653_Object { private static String EntityName = "MEMORY_REQUIREMENTS"; private String regionName_; private String memory_type_; private String sizeBytes_; private String physicalAddress_; private String memoryAccess_; 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(); regionName_ = null; memory_type_ = ""; sizeBytes_ = ""; physicalAddress_ = null; memoryAccess_ = ""; } public Memory_Requirements () { initializeExplicitAttributes(); } public Memory_Requirements (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setRegionName ( String _v ) { regionName_ = _v; } public String getRegionName() { return regionName_; } public void setMemoryType ( String _v ) { memory_type_ = _v; } public String getMemoryType() { return memory_type_; } public void setSizeBytes ( String _v ) { sizeBytes_ = _v; } public String getSizeBytes() { return sizeBytes_; } public void setPhysicalAddress ( String _v ) { physicalAddress_ = _v; } public String getPhysicalAddress() { return physicalAddress_; } public void setMemoryAccess ( String _v ) { memoryAccess_ = _v; } public String getMemoryAccess() { return memoryAccess_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Memory_Requirements) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Memory_RequirementsStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }