Package openEHR.v1.template
Interface SECTION
-
- All Superinterfaces:
Archetyped,ContentItem,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
SECTIONImpl
public interface SECTION extends ContentItem
An XML SECTION(@openEHR/v1/Template). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSECTION.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlbeans.SchemaTypetype
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentItemaddNewItem()Appends and returns a new empty value (as xml) as the last "Item" elementContentItem[]getItemArray()Gets array of all "Item" elementsContentItemgetItemArray(int i)Gets ith "Item" elementContentIteminsertNewItem(int i)Inserts and returns a new empty value (as xml) as the ith "Item" elementvoidremoveItem(int i)Removes the ith "Item" elementvoidsetItemArray(int i, ContentItem item)Sets ith "Item" elementvoidsetItemArray(ContentItem[] itemArray)Sets array of all "Item" elementintsizeOfItemArray()Returns number of "Item" element-
Methods inherited from interface openEHR.v1.template.Archetyped
getArchetypeId, getFromTemplate, getTemplateId, isSetFromTemplate, isSetTemplateId, setArchetypeId, setFromTemplate, setTemplateId, unsetFromTemplate, unsetTemplateId, xgetArchetypeId, xgetFromTemplate, xgetTemplateId, xsetArchetypeId, xsetFromTemplate, xsetTemplateId
-
Methods inherited from interface openEHR.v1.template.ContentItem
addNewConditional, addNewRule, getAnnotation, getConditional, getHideOnForm, getMax, getMin, getName, getPath, getRuleArray, getRuleArray, insertNewRule, isSetAnnotation, isSetConditional, isSetHideOnForm, isSetMax, isSetMin, isSetName, isSetPath, removeRule, setAnnotation, setConditional, setHideOnForm, setMax, setMin, setName, setPath, setRuleArray, setRuleArray, sizeOfRuleArray, unsetAnnotation, unsetConditional, unsetHideOnForm, unsetMax, unsetMin, unsetName, unsetPath, xgetAnnotation, xgetHideOnForm, xgetMax, xgetMin, xgetName, xgetPath, xsetAnnotation, xsetHideOnForm, xsetMax, xsetMin, xsetName, xsetPath
-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Method Detail
-
getItemArray
ContentItem[] getItemArray()
Gets array of all "Item" elements
-
getItemArray
ContentItem getItemArray(int i)
Gets ith "Item" element
-
sizeOfItemArray
int sizeOfItemArray()
Returns number of "Item" element
-
setItemArray
void setItemArray(ContentItem[] itemArray)
Sets array of all "Item" element
-
setItemArray
void setItemArray(int i, ContentItem item)Sets ith "Item" element
-
insertNewItem
ContentItem insertNewItem(int i)
Inserts and returns a new empty value (as xml) as the ith "Item" element
-
addNewItem
ContentItem addNewItem()
Appends and returns a new empty value (as xml) as the last "Item" element
-
removeItem
void removeItem(int i)
Removes the ith "Item" element
-
-