//------------------------------------------------------------------------------- // 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 Poisson_Task extends Periodic_Task { private static String EntityName = "POISSON_TASK"; private Integer seed_; private Boolean predictable_; 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(); seed_ = 0; predictable_ = false; } public Poisson_Task () { initializeExplicitAttributes(); } public Poisson_Task (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setSeed ( Integer _v ) { seed_ = _v; } public Integer getSeed() { return seed_; } public void setPredictable ( Boolean _v ) { predictable_ = _v; } public Boolean getPredictable() { return predictable_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Poisson_Task) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Poisson_TaskStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }