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 * Represents a PSVI item for one element information item.
286N/A */
286N/Apublic interface ElementPSVI extends ItemPSVI {
286N/A /**
286N/A * [element declaration]: an item isomorphic to the element declaration
286N/A * used to validate this element.
286N/A */
286N/A public XSElementDeclaration getElementDeclaration();
286N/A
286N/A /**
286N/A * [notation]: the notation declaration.
286N/A */
286N/A public XSNotationDeclaration getNotation();
286N/A
286N/A /**
286N/A * [nil]: true if clause 3.2 of Element Locally Valid (Element) (3.3.4) is
286N/A * satisfied, otherwise false.
286N/A */
286N/A public boolean getNil();
286N/A
286N/A /**
286N/A * schema information: the schema information property if it is the
286N/A * validation root, <code>null</code> otherwise.
286N/A */
286N/A public XSModel getSchemaInformation();
286N/A
286N/A}