Package com.sun.xml.xsom.impl.util
Class SchemaTreeTraverser.SchemaTreeNode
- java.lang.Object
-
- javax.swing.tree.DefaultMutableTreeNode
-
- com.sun.xml.xsom.impl.util.SchemaTreeTraverser.SchemaTreeNode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,javax.swing.tree.MutableTreeNode
,javax.swing.tree.TreeNode
- Direct Known Subclasses:
SchemaTreeTraverser.SchemaRootNode
- Enclosing class:
- SchemaTreeTraverser
public static class SchemaTreeTraverser.SchemaTreeNode extends javax.swing.tree.DefaultMutableTreeNode
The node of the schema hierarchy tree.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
artifactName
The caption of the corresponding artifact.private java.lang.String
fileName
File name of the corresponding schema artifact.private int
lineNumber
Line number of the corresponding schema artifact.
-
Constructor Summary
Constructors Constructor Description SchemaTreeNode(java.lang.String artifactName, org.xml.sax.Locator locator)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCaption()
Returns the caption forthis
node.java.lang.String
getFileName()
int
getLineNumber()
void
setFileName(java.lang.String fileName)
void
setLineNumber(int lineNumber)
-
Methods inherited from class javax.swing.tree.DefaultMutableTreeNode
add, breadthFirstEnumeration, children, clone, depthFirstEnumeration, getAllowsChildren, getChildAfter, getChildAt, getChildBefore, getChildCount, getDepth, getFirstChild, getFirstLeaf, getIndex, getLastChild, getLastLeaf, getLeafCount, getLevel, getNextLeaf, getNextNode, getNextSibling, getParent, getPath, getPathToRoot, getPreviousLeaf, getPreviousNode, getPreviousSibling, getRoot, getSharedAncestor, getSiblingCount, getUserObject, getUserObjectPath, insert, isLeaf, isNodeAncestor, isNodeChild, isNodeDescendant, isNodeRelated, isNodeSibling, isRoot, pathFromAncestorEnumeration, postorderEnumeration, preorderEnumeration, remove, remove, removeAllChildren, removeFromParent, setAllowsChildren, setParent, setUserObject, toString
-
-
-
-
Method Detail
-
getCaption
public java.lang.String getCaption()
Returns the caption forthis
node.- Returns:
- The caption for
this
node.
-
getFileName
public java.lang.String getFileName()
- Returns:
- Returns the file name of the corresponding schema artifact.
-
setFileName
public void setFileName(java.lang.String fileName)
- Parameters:
fileName
- The file name of the corresponding schema artifact to set.
-
getLineNumber
public int getLineNumber()
- Returns:
- Returns the line number of the corresponding schema artifact.
-
setLineNumber
public void setLineNumber(int lineNumber)
- Parameters:
lineNumber
- The line number of the corresponding schema artifact to set.
-
-