|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
ASObject
interface is analogous to a Node
in
, e.g., an element declaration.
Opaque.
See also the Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification.
public interface ASObject
Field Summary | |
---|---|
static short |
AS_ATTRIBUTE_DECLARATION
Deprecated. The node is an ASAttributeDeclaration . |
static short |
AS_CONTENTMODEL
Deprecated. The node is a ASContentModel . |
static short |
AS_ELEMENT_DECLARATION
Deprecated. The node is an ASElementDeclaration . |
static short |
AS_ENTITY_DECLARATION
Deprecated. The node is an ASEntityDeclaration . |
static short |
AS_MODEL
Deprecated. The node is a ASModel . |
static short |
AS_NOTATION_DECLARATION
Deprecated. The node is a ASNotationDeclaration . |
Method Summary | |
---|---|
ASObject |
cloneASObject(boolean deep)
Deprecated. Creates a copy of this ASObject . |
short |
getAsNodeType()
Deprecated. A code representing the underlying object as defined above. |
java.lang.String |
getLocalName()
Deprecated. Returns the local part of the qualified name of this ASObject . |
java.lang.String |
getNamespaceURI()
Deprecated. The namespace URI of this node, or null if it is
unspecified. |
java.lang.String |
getNodeName()
Deprecated. The name of this ASObject depending on the
ASObject type. |
ASModel |
getOwnerASModel()
Deprecated. The ASModel object associated with this
ASObject . |
java.lang.String |
getPrefix()
Deprecated. The namespace prefix of this node, or null if it is
unspecified. |
void |
setLocalName(java.lang.String localName)
Deprecated. Returns the local part of the qualified name of this ASObject . |
void |
setNamespaceURI(java.lang.String namespaceURI)
Deprecated. The namespace URI of this node, or null if it is
unspecified. |
void |
setNodeName(java.lang.String nodeName)
Deprecated. The name of this ASObject depending on the
ASObject type. |
void |
setOwnerASModel(ASModel ownerASModel)
Deprecated. The ASModel object associated with this
ASObject . |
void |
setPrefix(java.lang.String prefix)
Deprecated. The namespace prefix of this node, or null if it is
unspecified. |
Field Detail |
---|
static final short AS_ELEMENT_DECLARATION
ASElementDeclaration
.
static final short AS_ATTRIBUTE_DECLARATION
ASAttributeDeclaration
.
static final short AS_NOTATION_DECLARATION
ASNotationDeclaration
.
static final short AS_ENTITY_DECLARATION
ASEntityDeclaration
.
static final short AS_CONTENTMODEL
ASContentModel
.
static final short AS_MODEL
ASModel
.
Method Detail |
---|
short getAsNodeType()
ASModel getOwnerASModel()
ASModel
object associated with this
ASObject
. For a node of type AS_MODEL
, this
is null
.
void setOwnerASModel(ASModel ownerASModel)
ASModel
object associated with this
ASObject
. For a node of type AS_MODEL
, this
is null
.
java.lang.String getNodeName()
name
of this ASObject
depending on the
ASObject
type.
void setNodeName(java.lang.String nodeName)
name
of this ASObject
depending on the
ASObject
type.
java.lang.String getPrefix()
null
if it is
unspecified.
void setPrefix(java.lang.String prefix)
null
if it is
unspecified.
java.lang.String getLocalName()
ASObject
.
void setLocalName(java.lang.String localName)
ASObject
.
java.lang.String getNamespaceURI()
null
if it is
unspecified. defines how a namespace URI is attached to schema
components.
void setNamespaceURI(java.lang.String namespaceURI)
null
if it is
unspecified. defines how a namespace URI is attached to schema
components.
ASObject cloneASObject(boolean deep)
ASObject
. See text for
cloneNode
off of Node
but substitute AS
functionality.
deep
- Setting the deep
flag on, causes the whole
subtree to be duplicated. Setting it to false
only
duplicates its immediate child nodes.
ASObject
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |