13201321132213231324132513261327
* <b>Definition:</b> * If true, indicates that the described activity is one that must NOT be engaged in when following the plan. * </p> */ public Activity setProhibited( boolean theBoolean) { myProhibited = new BooleanDt(theBoolean); return this; }
375376377378379380381382383
* <b>Definition:</b> * * </p> */ public BooleanDt addBooleanErr() { BooleanDt newType = new BooleanDt(); getBooleanErr().add(newType); return newType; }
409410411412413414415416
*/ public Test addBooleanErr( boolean theBoolean) { if (myBooleanErr == null) { myBooleanErr = new java.util.ArrayList<BooleanDt>(); } myBooleanErr.add(new BooleanDt(theBoolean)); return this; }
453454455456457458459460461
* <b>Definition:</b> * * </p> */ public BooleanDt addBooleanCorr() { BooleanDt newType = new BooleanDt(); getBooleanCorr().add(newType); return newType; }
487488489490491492493494
*/ public Test addBooleanCorr( boolean theBoolean) { if (myBooleanCorr == null) { myBooleanCorr = new java.util.ArrayList<BooleanDt>(); } myBooleanCorr.add(new BooleanDt(theBoolean)); return this; }
166016611662166316641665166616671668
* Whether this hospitalization is a readmission * </p> */ public BooleanDt getReAdmission() { if (myReAdmission == null) { myReAdmission = new BooleanDt(); } return myReAdmission; }
16871688168916901691169216931694
* <b>Definition:</b> * Whether this hospitalization is a readmission * </p> */ public Hospitalization setReAdmission( boolean theBoolean) { myReAdmission = new BooleanDt(theBoolean); return this; }
283284285286287288289290291
* Set to true if the item is attributable to a specific manufacturer (even if we don't know who that is) * </p> */ public BooleanDt getIsBrand() { if (myIsBrand == null) { myIsBrand = new BooleanDt(); } return myIsBrand; }
310311312313314315316317
* <b>Definition:</b> * Set to true if the item is attributable to a specific manufacturer (even if we don't know who that is) * </p> */ public Medication setIsBrand( boolean theBoolean) { myIsBrand = new BooleanDt(theBoolean); return this; }
368369370371372373374375376
* If true, indicates that no reaction occurred. * </p> */ public BooleanDt getDidNotOccurFlag() { if (myDidNotOccurFlag == null) { myDidNotOccurFlag = new BooleanDt(); } return myDidNotOccurFlag; }