com.jxml.quick.model.qjml
Class QMRem

java.lang.Object
  |
  +--com.jxml.quick.model.qjml.QMCloneable
        |
        +--com.jxml.quick.model.qjml.QMRem
All Implemented Interfaces:
Cloneable, QBiModal

public class QMRem
extends QMCloneable
implements QBiModal

Models an rem element in QJML. This element is used to add comments to the QJML document. Unlike normal XML comments, the rem elements can be processed by a SAX parser and are treated the same as other elements.

DTD:

<!ELEMENT rem (#PCDATA)>

<!ATTLIST rem
    ID id #IMPLIED
>


Field Summary
 String text
          Represents the text content of the element.
 
Constructor Summary
QMRem()
           
 
Method Summary
 String getQText()
          Returns the text content of the element.
 void setQText(String text)
          Sets the text content of the element.
 
Methods inherited from class com.jxml.quick.model.qjml.QMCloneable
clone, clone, clone
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

text

public String text
Represents the text content of the element.
Constructor Detail

QMRem

public QMRem()
Method Detail

getQText

public String getQText()
Returns the text content of the element.
Specified by:
getQText in interface QBiModal

setQText

public void setQText(String text)
Sets the text content of the element.
Specified by:
setQText in interface QBiModal