690691692693694695696697698
* Name of sequencing system * </p> */ public CodeDt getName() { if (myName == null) { myName = new CodeDt(); } return myName; }
717718719720721722723724
* <b>Definition:</b> * Name of sequencing system * </p> */ public System setName( String theCode) { myName = new CodeDt(theCode); return this; }
823824825826827828829830831
* Whether the specimen is from germline or somatic cells of the patient * </p> */ public CodeDt getType() { if (myType == null) { myType = new CodeDt(); } return myType; }
850851852853854855856857
* <b>Definition:</b> * Whether the specimen is from germline or somatic cells of the patient * </p> */ public Specimen setType( String theCode) { myType = new CodeDt(theCode); return this; }
122812291230123112321233123412351236
* The primary language in which the source document is written * </p> */ public CodeDt getPrimaryLanguage() { if (myPrimaryLanguage == null) { myPrimaryLanguage = new CodeDt(); } return myPrimaryLanguage; }
12551256125712581259126012611262
* <b>Definition:</b> * The primary language in which the source document is written * </p> */ public DocumentReference setPrimaryLanguage( String theCode) { myPrimaryLanguage = new CodeDt(theCode); return this; }
127212731274127512761277127812791280
* The mime type of the source document * </p> */ public CodeDt getMimeType() { if (myMimeType == null) { myMimeType = new CodeDt(); } return myMimeType; }
12991300130113021303130413051306
* <b>Definition:</b> * The mime type of the source document * </p> */ public DocumentReference setMimeType( String theCode) { myMimeType = new CodeDt(theCode); return this; }
9959969979989991000100110021003
* <b>Definition:</b> * A list of the formats supported by this implementation * </p> */ public CodeDt addFormat() { CodeDt newType = new CodeDt(); getFormat().add(newType); return newType; }
10291030103110321033103410351036
*/ public Conformance addFormat( String theCode) { if (myFormat == null) { myFormat = new java.util.ArrayList<CodeDt>(); } myFormat.add(new CodeDt(theCode)); return this; }