org.eclipse.xsd.XSDNotationDeclaration Maven / Gradle / Ivy
/**
* Copyright (c) 2002-2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.xsd;
/**
*
* A representation of the model object
* 'Notation Declaration'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDNotationDeclaration#getSystemIdentifier System Identifier}
* - {@link org.eclipse.xsd.XSDNotationDeclaration#getPublicIdentifier Public Identifier}
* - {@link org.eclipse.xsd.XSDNotationDeclaration#getAnnotation Annotation}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDNotationDeclaration()
* @model
* @generated
*/
public interface XSDNotationDeclaration extends XSDNamedComponent, XSDSchemaContent
{
/**
* Returns the value of the 'System Identifier' attribute.
*
*
* This represents the
* system identifier
* infoset property.
*
*
* @return the value of the 'System Identifier' attribute.
* @see #setSystemIdentifier(String)
* @see org.eclipse.xsd.XSDPackage#getXSDNotationDeclaration_SystemIdentifier()
* @model
* @generated
*/
String getSystemIdentifier();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDNotationDeclaration#getSystemIdentifier System Identifier}' attribute.
*
*
* @param value the new value of the 'System Identifier' attribute.
* @see #getSystemIdentifier()
* @generated
*/
void setSystemIdentifier(String value);
/**
* Returns the value of the 'Public Identifier' attribute.
*
*
* This represents the
* public identifier
* infoset property.
*
*
* @return the value of the 'Public Identifier' attribute.
* @see #setPublicIdentifier(String)
* @see org.eclipse.xsd.XSDPackage#getXSDNotationDeclaration_PublicIdentifier()
* @model
* @generated
*/
String getPublicIdentifier();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDNotationDeclaration#getPublicIdentifier Public Identifier}' attribute.
*
*
* @param value the new value of the 'Public Identifier' attribute.
* @see #getPublicIdentifier()
* @generated
*/
void setPublicIdentifier(String value);
/**
* Returns the value of the 'Annotation' containment reference.
*
*
* This represents the
* annotation
* infoset property.
*
*
* @return the value of the 'Annotation' containment reference.
* @see #setAnnotation(XSDAnnotation)
* @see org.eclipse.xsd.XSDPackage#getXSDNotationDeclaration_Annotation()
* @model containment="true"
* @generated
*/
XSDAnnotation getAnnotation();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDNotationDeclaration#getAnnotation Annotation}' containment reference.
*
*
* @param value the new value of the 'Annotation' containment reference.
* @see #getAnnotation()
* @generated
*/
void setAnnotation(XSDAnnotation value);
}