com.jxml.quick.model.qjml
Class  QMTargetEditor
java.lang.Object
  |
  +--com.jxml.quick.model.qjml.QMCloneable
        |
        +--com.jxml.quick.model.qjml.QMTargetEditor
- All Implemented Interfaces: 
- Cloneable, QMTarget
- public class QMTargetEditor- extends QMCloneable- implements QMTarget
Models the targetEditor element in QJML.
 The targetEditor element holds the name of a Java class and the PropertyEditor class
 which creates instances of that Java class.
DTD:
<!ELEMENT targetEditor EMPTY>
<!ATTLIST targetEditor
    editor CDATA #IMPLIED
    target CDATA #REQUIRED
    ID id #IMPLIED
>
| Field Summary | 
|  String | editorModels the editor attribute on the targetEditor element.
 | 
|  String | targetModels the target attribute on the targetEditor element.
 | 
 
 
| Method Summary | 
|  String | getClassName()Returns the fully qualified name of the class being described by the coin 
 holding this target element.
 | 
 
 
 
editor
public String editor
- Models the editor attribute on the targetEditor element.
 The editor attribute names a JavaBean PropertyEditor class.
 This attribute is optional, as the PropertyEditor class can often be determined
 from the name of the target class.
target
public String target
- Models the target attribute on the targetEditor element.
 The target attribute names a Java class.
 This attribute is required.
QMTargetEditor
public QMTargetEditor()
getClassName
public String getClassName()
                    throws SAXException
- Description copied from interface: QMTarget
- Returns the fully qualified name of the class being described by the coin 
 holding this target element.- 
- Specified by: 
- getClassNamein interface- QMTarget