//------------------------------------------------------------------------------- // 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 Affected_Task_Lists extends step.core.StepCoreObject { private static String EntityName = "AFFECTED_TASK_LISTS"; private Integer task_begin_; private Integer task_end_; 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(); task_begin_ = 0; task_end_ = 0; } public Affected_Task_Lists () { initializeExplicitAttributes(); } public Affected_Task_Lists (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setTaskBegin ( Integer _v ) { task_begin_ = _v; } public Integer getTaskBegin() { return task_begin_; } public void setTaskEnd ( Integer _v ) { task_end_ = _v; } public Integer getTaskEnd() { return task_end_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Affected_Task_Lists) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Affected_Task_ListsStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }