//------------------------------------------------------------------------------- // 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 Window_Schedule_Element extends ARINC_653_Object { private static String EntityName = "WINDOW_SCHEDULE_ELEMENT"; private String WindowIdentifier_; private Double WindowStartSeconds_; private Double WindowDurationSeconds_; private Boolean PartitionPeriodStart_; 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(); WindowIdentifier_ = ""; WindowStartSeconds_ = 0.0; WindowDurationSeconds_ = 0.0; PartitionPeriodStart_ = false; } public Window_Schedule_Element () { initializeExplicitAttributes(); } public Window_Schedule_Element (step.core.StepCoreRepository _repo) { super(_repo); initializeExplicitAttributes(); } public void setWindowIdentifier ( String _v ) { WindowIdentifier_ = _v; } public String getWindowIdentifier() { return WindowIdentifier_; } public void setWindowStartSeconds ( Double _v ) { WindowStartSeconds_ = _v; } public Double getWindowStartSeconds() { return WindowStartSeconds_; } public void setWindowDurationSeconds ( Double _v ) { WindowDurationSeconds_ = _v; } public Double getWindowDurationSeconds() { return WindowDurationSeconds_; } public void setPartitionPeriodStart ( Boolean _v ) { PartitionPeriodStart_ = _v; } public Boolean getPartitionPeriodStart() { return PartitionPeriodStart_; } public void accept(CheddarBridge_AbstractVisitor visitor ) { visitor.accept((Window_Schedule_Element) this); } public step.core.StepCoreObjectReaderWriter readerWriter() { return new Window_Schedule_ElementStepRW(); } public boolean replaceReferenceWith(StepCoreObject oldObj, StepCoreObject newObj) { boolean done = false; if (super.replaceReferenceWith(oldObj, newObj)) { done = true; } return done; } }