コード例 #1
0
ファイル: Present_Data.java プロジェクト: samsontu/eon2pm
 public boolean isdeferedValue() {
   if (ModelUtilities.getOwnSlotValue(this, "defered") == null) return false;
   else return ((Boolean) ModelUtilities.getOwnSlotValue(this, "defered")).booleanValue();
 }
コード例 #2
0
ファイル: Present_Data.java プロジェクト: samsontu/eon2pm
 public Collection getEPR_queryValue() {
   return ModelUtilities.getOwnSlotValues(this, "EPR_query");
 }
コード例 #3
0
ファイル: Present_Data.java プロジェクト: samsontu/eon2pm
 public void setdeferedValue(boolean defered) {
   ModelUtilities.setOwnSlotValue(this, "defered", new Boolean(defered));
 }
コード例 #4
0
ファイル: Date_Expression.java プロジェクト: samsontu/eon2pm
 public String getoperatorValue() {
   return ((String) ModelUtilities.getOwnSlotValue(this, "operator"));
 }
コード例 #5
0
ファイル: Present_Data.java プロジェクト: samsontu/eon2pm
 public void setEPR_queryValue(Collection EPR_query) {
   ModelUtilities.setOwnSlotValues(this, "EPR_query", EPR_query);
 }
コード例 #6
0
ファイル: Date_Expression.java プロジェクト: samsontu/eon2pm
 public Instance getsecond_argumentValue() {
   return ((Instance) ModelUtilities.getOwnSlotValue(this, "second_argument"));
 }
コード例 #7
0
ファイル: Date_Expression.java プロジェクト: samsontu/eon2pm
 public void setoperatorValue(String operator) {
   ModelUtilities.setOwnSlotValue(this, "operator", operator);
 }
コード例 #8
0
ファイル: Date_Expression.java プロジェクト: samsontu/eon2pm
 public void setfirst_argumentValue(Instance first_argument) {
   ModelUtilities.setOwnSlotValue(this, "first_argument", first_argument);
 }
コード例 #9
0
ファイル: Date_Expression.java プロジェクト: samsontu/eon2pm
 public void setsecond_argumentValue(Instance second_argument) {
   ModelUtilities.setOwnSlotValue(this, "second_argument", second_argument);
 }
コード例 #10
0
 public void setfirst_stepValue(Instance first_step) {
   ModelUtilities.setOwnSlotValue(this, "first_step", first_step);
 }
コード例 #11
0
 public Instance getfirst_stepValue() {
   return ((Instance) ModelUtilities.getOwnSlotValue(this, "first_step"));
 }
コード例 #12
0
 public void setlast_stepValue(Instance last_step) {
   ModelUtilities.setOwnSlotValue(this, "last_step", last_step);
 }
コード例 #13
0
 public Collection getstepsValue() {
   return ModelUtilities.getOwnSlotValues(this, "steps");
 }
コード例 #14
0
 public void setstepsValue(Collection steps) {
   ModelUtilities.setOwnSlotValues(this, "steps", steps);
 }
コード例 #15
0
 public Instance getcompletion_criteriaValue() {
   return ((Instance) ModelUtilities.getOwnSlotValue(this, "completion_criteria"));
 }
コード例 #16
0
 public void setcompletion_criteriaValue(Instance completion_criteria) {
   ModelUtilities.setOwnSlotValue(this, "completion_criteria", completion_criteria);
 }