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