//------------------------------------------------------------------------------- // 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 Static_Deployment extends Generic_Deployment { private static String EntityName = "STATIC_DEPLOYMENT"; private String allocation_description_; 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(); allocation_description_ = ""; } public Static_Deployment () { initializeExplicitAttributes(); } public Static_Deployment (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setAllocationDescription ( String _v ) { allocation_description_ = _v; } public String getAllocationDescription() { return allocation_description_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Static_Deployment) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Static_DeploymentStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }