org.dcm4che.srom
Interface TextContent

All Superinterfaces:
Content

public interface TextContent
extends Content

The TextContent interface represents a DICOM SR Text Content of value type TEXT.
Free text, narrative description of unlimited length.

Version:
1.0
Author:
gunter.zeilinger@tiani.com
See Also:
"DICOM Part 3: Information Object Definitions, Annex C.17.3 SR Document Content Module"

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.dcm4che.srom.Content
Content.RelationType, Content.ValueType
 
Field Summary
 
Fields inherited from interface org.dcm4che.srom.Content
log
 
Method Summary
 java.lang.String getText()
          Returns the value of the Text Value field.
 void setText(java.lang.String text)
           
 
Methods inherited from interface org.dcm4che.srom.Content
appendChild, clone, getFirstChild, getFirstChildBy, getID, getLastChild, getName, getNextSibling, getNextSiblingBy, getObservationDateTime, getOwnerDocument, getParent, getPreviousSibling, getRelationType, getTemplate, getValueType, hasChildren, insertBefore, removeChild, replaceChild, setName, toDataset
 

Method Detail

getText

java.lang.String getText()
Returns the value of the Text Value field.
DICOM Tag: (0040,A160)
Tag Name: Text Value
Text data which is unformatted and whose manner of display is implementation dependent. The text value may contain spaces, as well as multiple lines separated by either LF, CR, CR LF or LF CR, but otherwise no format control characters (such as horizontal or vertical tab and form feed) shall be present, even if permitted by the Value Representation of UT. The text shall be interpreted as specified by Specific Character Set (0008,0005) if present in the SOP Common Module.

Note:
   The text may contain single or 
   multi-byte characters and use code 
   extension techniques as described 
   in PS 3.5 if permitted by the values 
   of Specific Character Set (0008,0005). 
 

Returns:
the value of the Text Value field.

setText

void setText(java.lang.String text)