//------------------------------------------------------------------------------- // 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 Task_List_Element extends step.core.StepCoreObject { private static String EntityName = "TASK_LIST_ELEMENT"; private String index_; private Affected_Task_Lists data_; 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(); index_ = ""; data_ = null; } public Task_List_Element () { initializeExplicitAttributes(); } public Task_List_Element (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setIndex ( String _v ) { index_ = _v; } public String getIndex() { return index_; } public void setData ( Affected_Task_Lists _v ) { data_ = _v; } public Affected_Task_Lists getData() { return data_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Task_List_Element) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Task_List_ElementStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (getData() == oldObj ) { setData((Affected_Task_Lists) newObj); done = true; } if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }