FileDocCategorySizeDatePackage
XSGroupDecl.javaAPI DocJava SE 6 API2398Tue Jun 10 00:22:44 BST 2008com.sun.org.apache.xerces.internal.impl.xs

XSGroupDecl

public class XSGroupDecl extends Object implements XSModelGroupDefinition
The XML representation for a group declaration schema component is a global element information item
xerces.internal
author
Sandy Gao, IBM
version
$Id: XSGroupDecl.java,v 1.2.6.1 2005/09/09 07:30:56 sunithareddy Exp $

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

        return fAnnotation;
    
public com.sun.org.apache.xerces.internal.xs.XSModelGroupgetModelGroup()
{model group} A model group.

        return fModelGroup;
    
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()

        // REVISIT: implement
		return null;
	
public shortgetType()
Get the type of the object, i.e ELEMENT_DECLARATION.


                 
       
        return XSConstants.MODEL_GROUP_DEFINITION;