org.apache.xerces.impl.xs
Class XSAttributeGroupDecl

java.lang.Object
  extended by org.apache.xerces.impl.xs.XSAttributeGroupDecl
All Implemented Interfaces:
XSAttributeGroupDefinition, XSObject

public class XSAttributeGroupDecl
extends java.lang.Object
implements XSAttributeGroupDefinition

The XML representation for an attribute group declaration schema component is a global <attributeGroup> element information item

Version:
$Id: XSAttributeGroupDecl.java 449424 2006-09-24 16:22:30Z mrglavas $
Author:
Sandy Gao, IBM, Rahul Srivastava, Sun Microsystems Inc.

Field Summary
 XSObjectList fAnnotations
           
 XSWildcardDecl fAttributeWC
           
 java.lang.String fIDAttrName
           
 java.lang.String fName
           
 java.lang.String fTargetNamespace
           
 
Constructor Summary
XSAttributeGroupDecl()
           
 
Method Summary
 java.lang.String addAttributeUse(XSAttributeUseImpl attrUse)
           
 XSAnnotation getAnnotation()
          Optional.
 XSObjectList getAnnotations()
          Optional.
 XSAttributeUse getAttributeUse(java.lang.String namespace, java.lang.String name)
           
 XSObjectList getAttributeUses()
          {attribute uses} A set of attribute uses.
 XSWildcard getAttributeWildcard()
          {attribute wildcard} Optional.
 java.lang.String getName()
          The name of this XSObject depending on the XSObject type.
 java.lang.String getNamespace()
          The namespace URI of this node, or null if it is unspecified.
 XSNamespaceItem getNamespaceItem()
          A namespace schema information item corresponding to the target namespace of the component, if it is globally declared; or null otherwise.
 short getType()
          Get the type of the object, i.e ELEMENT_DECLARATION.
 void removeProhibitedAttrs()
           
 void reset()
           
 java.lang.Object[] validRestrictionOf(java.lang.String typeName, XSAttributeGroupDecl baseGroup)
          Check that the attributes in this group validly restrict those from a base group.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fName

public java.lang.String fName

fTargetNamespace

public java.lang.String fTargetNamespace

fAttributeWC

public XSWildcardDecl fAttributeWC

fIDAttrName

public java.lang.String fIDAttrName

fAnnotations

public XSObjectList fAnnotations
Constructor Detail

XSAttributeGroupDecl

public XSAttributeGroupDecl()
Method Detail

addAttributeUse

public java.lang.String addAttributeUse(XSAttributeUseImpl attrUse)

getAttributeUse

public XSAttributeUse getAttributeUse(java.lang.String namespace,
                                      java.lang.String name)

removeProhibitedAttrs

public void removeProhibitedAttrs()

validRestrictionOf

public java.lang.Object[] validRestrictionOf(java.lang.String typeName,
                                             XSAttributeGroupDecl baseGroup)
Check that the attributes in this group validly restrict those from a base group. If an error is found, an Object[] is returned. This contains the arguments for the error message describing the error. The last element in the array (at index arr.length - 1) is the the error code. Returns null if there is no error. REVISIT: is there a better way of returning the appropriate information for the error?

Parameters:
typeName - the name of the type containing this attribute group, used for error reporting purposes
baseGroup - the XSAttributeGroupDecl that is the base we are checking against

reset

public void reset()

getType

public short getType()
Get the type of the object, i.e ELEMENT_DECLARATION.

Specified by:
getType in interface XSObject

getName

public java.lang.String getName()
The name of this XSObject depending on the XSObject type.

Specified by:
getName in interface XSObject

getNamespace

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

Specified by:
getNamespace in interface XSObject

getAttributeUses

public XSObjectList getAttributeUses()
{attribute uses} A set of attribute uses.

Specified by:
getAttributeUses in interface XSAttributeGroupDefinition

getAttributeWildcard

public XSWildcard getAttributeWildcard()
{attribute wildcard} Optional. A wildcard.

Specified by:
getAttributeWildcard in interface XSAttributeGroupDefinition

getAnnotation

public XSAnnotation getAnnotation()
Optional. Annotation.

Specified by:
getAnnotation in interface XSAttributeGroupDefinition

getAnnotations

public XSObjectList getAnnotations()
Optional. Annotations.

Specified by:
getAnnotations in interface XSAttributeGroupDefinition

getNamespaceItem

public XSNamespaceItem getNamespaceItem()
Description copied from interface: XSObject
A namespace schema information item corresponding to the target namespace of the component, if it is globally declared; or null otherwise.

Specified by:
getNamespaceItem in interface XSObject
See Also:
XSObject.getNamespaceItem()