Package com.sodius.mdw.metamodel.uml21
Interface Point
-
- All Superinterfaces:
Comparable<Object>
,org.eclipse.emf.ecore.EModelElement
,org.eclipse.emf.ecore.EObject
,MDWEObject
,MDWObject
,org.eclipse.emf.common.notify.Notifier
- All Known Subinterfaces:
BezierPoint
public interface Point extends MDWEObject
- See Also:
UMLPackage.getPoint()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Point
copy()
double
getX()
Returns the value of the 'X' attribute.double
getY()
Returns the value of the 'Y' attribute.boolean
isSetX()
Returns whether the value of the 'X
' attribute is set.boolean
isSetY()
Returns whether the value of the 'Y
' attribute is set.void
setX(double value)
Sets the value of the 'X
' attribute.void
setY(double value)
Sets the value of the 'Y
' attribute.void
unsetX()
Unsets the value of the 'X
' attribute.void
unsetY()
Unsets the value of the 'Y
' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EModelElement
getEAnnotation, getEAnnotations
-
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 com.sodius.mdw.core.model.MDWObject
compareTo, eExtendedClass, eIsInstanceOf, eIsInstanceOf, eIsProfiled, eIsRemoved, eMetamodel, eMetaTypeName, eModel, eRemove, eSetUniqueID, eUniqueID, superScript, superScript, toBoolean, toBoolean, toByte, toByte, toChar, toChar, toDouble, toDouble, toFloat, toFloat, toInt, toInt, toList, toList, toList, toList, toList, toLong, toLong, toObject, toObject, toSet, toSet, toShort, toShort, toString, toString
-
-
-
-
Method Detail
-
getX
double getX()
Returns the value of the 'X' attribute.- Returns:
- the value of the 'X' attribute.
- See Also:
isSetX()
,unsetX()
,setX(double)
,UMLPackage.getPoint_X()
-
setX
void setX(double value)
Sets the value of the 'X
' attribute.
-
unsetX
void unsetX()
Unsets the value of the 'X
' attribute.- See Also:
isSetX()
,getX()
,setX(double)
-
isSetX
boolean isSetX()
Returns whether the value of the 'X
' attribute is set.- Returns:
- whether the value of the 'X' attribute is set.
- See Also:
unsetX()
,getX()
,setX(double)
-
getY
double getY()
Returns the value of the 'Y' attribute.- Returns:
- the value of the 'Y' attribute.
- See Also:
isSetY()
,unsetY()
,setY(double)
,UMLPackage.getPoint_Y()
-
setY
void setY(double value)
Sets the value of the 'Y
' attribute.
-
unsetY
void unsetY()
Unsets the value of the 'Y
' attribute.- See Also:
isSetY()
,getY()
,setY(double)
-
isSetY
boolean isSetY()
Returns whether the value of the 'Y
' attribute is set.- Returns:
- whether the value of the 'Y' attribute is set.
- See Also:
unsetY()
,getY()
,setY(double)
-
-