FileDocCategorySizeDatePackage
XSGroupDecl.javaAPI DocJava SE 5 API4438Fri Aug 26 14:55:50 BST 2005com.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
author
Sandy Gao, IBM
version
$Id: XSGroupDecl.java,v 1.8 2003/11/11 20:14:58 sandygao 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;