Package de.uka.ipd.sdq.featuremodel
Interface IntegerIntervalRange
-
- All Superinterfaces:
EObject
,IntervalRange
,Notifier
- All Known Implementing Classes:
IntegerIntervalRangeImpl
public interface IntegerIntervalRange extends IntervalRange
A representation of the model object 'Integer Interval Range'.The following features are supported:
- See Also:
featuremodelPackage.getIntegerIntervalRange()
- Generated class or method.
- EMF model class or method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFrom()
Returns the value of the 'From' attribute.int
getTo()
Returns the value of the 'To' attribute.void
setFrom(int value)
Sets the value of the 'From
' attribute.void
setTo(int value)
Sets the value of the 'To
' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface de.uka.ipd.sdq.featuremodel.IntervalRange
isLowerBoundIncluded, isUpperBoundIncluded, setLowerBoundIncluded, setUpperBoundIncluded
-
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
-
-
-
Method Detail
-
getTo
int getTo()
Returns the value of the 'To' attribute.If the meaning of the 'To' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'To' attribute.
- See Also:
setTo(int)
,featuremodelPackage.getIntegerIntervalRange_To()
- Generated class or method.
- EMF model class or method.
- required="true" ordered="false"
-
setTo
void setTo(int value)
Sets the value of the 'To
' attribute.- Parameters:
value
- the new value of the 'To' attribute.- See Also:
getTo()
- Generated class or method.
-
getFrom
int getFrom()
Returns the value of the 'From' attribute. The default value is"0"
.If the meaning of the 'From' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'From' attribute.
- See Also:
setFrom(int)
,featuremodelPackage.getIntegerIntervalRange_From()
- Generated class or method.
- EMF model class or method.
- default="0" required="true" ordered="false"
-
-