286N/A/*
286N/A * reserved comment block
286N/A * DO NOT REMOVE OR ALTER!
286N/A */
286N/A/*
286N/A * Copyright 2003,2004 The Apache Software Foundation.
286N/A *
286N/A * Licensed under the Apache License, Version 2.0 (the "License");
286N/A * you may not use this file except in compliance with the License.
286N/A * You may obtain a copy of the License at
286N/A *
286N/A * http://www.apache.org/licenses/LICENSE-2.0
286N/A *
286N/A * Unless required by applicable law or agreed to in writing, software
286N/A * distributed under the License is distributed on an "AS IS" BASIS,
286N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
286N/A * See the License for the specific language governing permissions and
286N/A * limitations under the License.
286N/A */
286N/A
286N/Apackage com.sun.org.apache.xerces.internal.xs;
286N/A
286N/A/**
286N/A * This interface represents the Attribute Group Definition schema component.
286N/A */
286N/Apublic interface XSAttributeGroupDefinition extends XSObject {
286N/A /**
286N/A * A set of [attribute uses] if it exists, otherwise an empty
286N/A * <code>XSObjectList</code>.
286N/A */
286N/A public XSObjectList getAttributeUses();
286N/A
286N/A /**
286N/A * A [wildcard] if it exists, otherwise <code>null</code>.
286N/A */
286N/A public XSWildcard getAttributeWildcard();
286N/A
286N/A /**
286N/A * An annotation if it exists, otherwise <code>null</code>. If not null
286N/A * then the first [annotation] from the sequence of annotations.
286N/A */
286N/A public XSAnnotation getAnnotation();
286N/A
286N/A /**
286N/A * A sequence of [annotations] or an empty <code>XSObjectList</code>.
286N/A */
286N/A public XSObjectList getAnnotations();
286N/A}