org.eclipse.xsd.XSDMinFacet 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 'Min Facet'.
* It represents aspects common to
* '{@link org.eclipse.xsd.XSDMinExclusiveFacet Min Exclusive Facet}' and
* '{@link org.eclipse.xsd.XSDMinInclusiveFacet Min Inclusive Facet}'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDMinFacet#getValue Value}
* - {@link org.eclipse.xsd.XSDMinFacet#isInclusive Inclusive}
* - {@link org.eclipse.xsd.XSDMinFacet#isExclusive Exclusive}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDMinFacet()
* @model abstract="true"
* @generated
*/
public interface XSDMinFacet extends XSDFixedFacet {
/**
* Returns the value of the 'Value' attribute.
*
*
* This represents the
* minExclusive value or
* minInclusive value
* infoset property.
* It is computed from the '{@link #getLexicalValue() Lexical Value}' attribute and should typically not be set directly.
*
*
* @return the value of the 'Value' attribute.
* @see #setValue(Object)
* @see org.eclipse.xsd.XSDPackage#getXSDMinFacet_Value()
* @model dataType="org.eclipse.xsd.Value"
* @generated
*/
Object getValue();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDMinFacet#getValue Value}' attribute.
*
*
* @param value the new value of the 'Value' attribute.
* @see #getValue()
* @generated
*/
void setValue(Object value);
/**
* Returns the value of the 'Inclusive' attribute.
*
*
* The value is true
if this is a {@link org.eclipse.xsd.XSDMinInclusiveFacet}.
*
*
* @return the value of the 'Inclusive' attribute.
* @see org.eclipse.xsd.XSDPackage#getXSDMinFacet_Inclusive()
* @model changeable="false" volatile="true"
* @generated
*/
boolean isInclusive();
/**
* Returns the value of the 'Exclusive' attribute.
*
*
*
*
* @return the value of the 'Exclusive' attribute.
* @see org.eclipse.xsd.XSDPackage#getXSDMinFacet_Exclusive()
* @model changeable="false" volatile="true"
* @generated
*/
boolean isExclusive();
}