org.eclipse.xsd.XSDFixedFacet 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 'Fixed Facet'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDFixedFacet#isFixed Fixed}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDFixedFacet()
* @model abstract="true"
* @generated
*/
public interface XSDFixedFacet extends XSDConstrainingFacet {
/**
* Returns the value of the 'Fixed' attribute.
*
*
* This represents the
* fractionDigitsFacet fixed,
* lengthFacet fixed,
* maxExclusiveFacet fixed,
* maxInclusiveFacet fixed,
* maxLengthFacet fixed,
* minExclusiveFacet fixed,
* minInclusiveFacet fixed,
* minLengthFacet fixed,
* totalDigitsFacet fixed,
* whiteSpaceFacet fixed
* infoset property.
*
*
* @return the value of the 'Fixed' attribute.
* @see #isSetFixed()
* @see #unsetFixed()
* @see #setFixed(boolean)
* @see org.eclipse.xsd.XSDPackage#getXSDFixedFacet_Fixed()
* @model unsettable="true"
* @generated
*/
boolean isFixed();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDFixedFacet#isFixed Fixed}' attribute.
*
*
* @param value the new value of the 'Fixed' attribute.
* @see #isSetFixed()
* @see #unsetFixed()
* @see #isFixed()
* @generated
*/
void setFixed(boolean value);
/**
* Unsets the value of the '{@link org.eclipse.xsd.XSDFixedFacet#isFixed Fixed}' attribute.
*
*
* @see #isSetFixed()
* @see #isFixed()
* @see #setFixed(boolean)
* @generated
*/
void unsetFixed();
/**
* Returns whether the value of the '{@link org.eclipse.xsd.XSDFixedFacet#isFixed Fixed}' attribute is set.
*
*
* @return whether the value of the 'Fixed' attribute is set.
* @see #unsetFixed()
* @see #isFixed()
* @see #setFixed(boolean)
* @generated
*/
boolean isSetFixed();
}