FileDocCategorySizeDatePackage
XSNotationDecl.javaAPI DocJava SE 6 API2885Tue Jun 10 00:22:46 BST 2008com.sun.org.apache.xerces.internal.impl.xs

XSNotationDecl

public class XSNotationDecl extends Object implements XSNotationDeclaration
The XML representation for a NOTATION declaration schema component is a global element information item
xerces.internal
author
Rahul Srivastava, Sun Microsystems Inc.
version
$Id: XSNotationDecl.java,v 1.2.6.1 2005/09/09 07:30:58 sunithareddy Exp $

Fields Summary
public String
fName
public String
fTargetNamespace
public String
fPublicId
public String
fSystemId
public XSAnnotationImpl
fAnnotation
Constructors Summary
Methods Summary
public com.sun.org.apache.xerces.internal.xs.XSAnnotationgetAnnotation()
Optional. Annotation.

        return fAnnotation;
    
public java.lang.StringgetName()
The name of this XSObject depending on the XSObject type.

        return fName;
    
public java.lang.StringgetNamespace()
The namespace URI of this node, or null if it is unspecified. defines how a namespace URI is attached to schema components.

        return fTargetNamespace;
    
public com.sun.org.apache.xerces.internal.xs.XSNamespaceItemgetNamespaceItem()

see
com.sun.org.apache.xerces.internal.xs.XSObject#getNamespaceItem()

		return null;
	
public java.lang.StringgetPublicId()
Optional if {system identifier} is present. A public identifier, as defined in [XML 1.0 (Second Edition)].

        return fPublicId;
    
public java.lang.StringgetSystemId()
Optional if {public identifier} is present. A URI reference.

        return fSystemId;
    
public shortgetType()
Get the type of the object, i.e ELEMENT_DECLARATION.


                 
       
        return XSConstants.NOTATION_DECLARATION;