499500501502503504505506
* <b>Definition:</b> * Official human-readable label for the composition * </p> */ public Composition setTitle( String theString) { myTitle = new StringDt(theString); return this; }
132013211322132313241325132613271328
* The heading for this particular section. This will be part of the rendered content for the document. * </p> */ public StringDt getTitle() { if (myTitle == null) { myTitle = new StringDt(); } return myTitle; }
13471348134913501351135213531354
* <b>Definition:</b> * The heading for this particular section. This will be part of the rendered content for the document. * </p> */ public Section setTitle( String theString) { myTitle = new StringDt(theString); return this; }
235123522353235423552356235723582359
* A concise definition that is shown in the generated XML format that summarizes profiles (used throughout the specification) * </p> */ public StringDt getShort() { if (myShort == null) { myShort = new StringDt(); } return myShort; }
23782379238023812382238323842385
* <b>Definition:</b> * A concise definition that is shown in the generated XML format that summarizes profiles (used throughout the specification) * </p> */ public StructureElementDefinition setShort( String theString) { myShort = new StringDt(theString); return this; }
239523962397239823992400240124022403
* The definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource * </p> */ public StringDt getFormal() { if (myFormal == null) { myFormal = new StringDt(); } return myFormal; }
24222423242424252426242724282429
* <b>Definition:</b> * The definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource * </p> */ public StructureElementDefinition setFormal( String theString) { myFormal = new StringDt(theString); return this; }
243924402441244224432444244524462447
* Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc. * </p> */ public StringDt getComments() { if (myComments == null) { myComments = new StringDt(); } return myComments; }
24662467246824692470247124722473
* <b>Definition:</b> * Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc. * </p> */ public StructureElementDefinition setComments( String theString) { myComments = new StringDt(theString); return this; }
248324842485248624872488248924902491
* Explains why this element is needed and why it's been constrained as it has * </p> */ public StringDt getRequirements() { if (myRequirements == null) { myRequirements = new StringDt(); } return myRequirements; }