//------------------------------------------------------------------------------- // 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 Error_ID_Type extends ARINC_653_Object { private static String EntityName = "ERROR_ID_TYPE"; private String ErrorIdentifier_; private String Description_; private PartitionActionType PartitionAction_; private ModuleActionType ModuleAction_; 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(); ErrorIdentifier_ = ""; Description_ = null; PartitionAction_ = null; ModuleAction_ = null; } public Error_ID_Type () { initializeExplicitAttributes(); } public Error_ID_Type (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setErrorIdentifier ( String _v ) { ErrorIdentifier_ = _v; } public String getErrorIdentifier() { return ErrorIdentifier_; } public void setDescription ( String _v ) { Description_ = _v; } public String getDescription() { return Description_; } public void setPartitionAction ( PartitionActionType _v ) { PartitionAction_ = _v; } public PartitionActionType getPartitionAction() { return PartitionAction_; } public void setModuleAction ( ModuleActionType _v ) { ModuleAction_ = _v; } public ModuleActionType getModuleAction() { return ModuleAction_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Error_ID_Type) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Error_ID_TypeStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }