Package com.sodius.mdw.metamodel.uml21
Interface GraphNode
-
- All Superinterfaces:
Comparable<Object>
,DiagramElement
,org.eclipse.emf.ecore.EModelElement
,org.eclipse.emf.ecore.EObject
,GraphElement
,MDWEObject
,MDWObject
,org.eclipse.emf.common.notify.Notifier
- All Known Subinterfaces:
Diagram
public interface GraphNode extends GraphElement
A representation of the model object 'Graph Node'.The following features are supported:
- See Also:
UMLPackage.getGraphNode()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Dimension
getSize()
Returns the value of the 'Size' containment reference.void
setSize(double width, double height)
Creates a newDimension
for the currentGraph Node
.void
setSize(Dimension value)
Sets the value of the 'Size
' containment reference.-
Methods inherited from interface com.sodius.mdw.metamodel.uml21.DiagramElement
getContainer, getDiagram, getProperty, getProperty, getProperty, getProperty, getReference, isSetIsVisible, isVisible, removeProperty, setContainer, setIsVisible, setProperty, setProperty, unsetIsVisible
-
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.metamodel.uml21.GraphElement
createContained, createContainedConnector, createContainedEdge, createContainedGraphElement, createContainedNode, createContainedTextElement, createSimpleContainedNode, getAllContainedEdges, getAllContainedEdges, getAllContainedEdges, getAllContainedNodes, getAllContainedNodes, getAllContainedNodes, getAllContainedNodes, getAnchorage, getContained, getContainedEdges, getContainedEdges, getContainedEdges, getContainedNodes, getContainedNodes, getContainedNodes, getContainedNodes, getLink, getPosition, getSemanticElement, getSemanticModel, getSemanticTypeInfo, setPosition, setPosition, setSemanticElement, setSemanticModel, setSemanticTypeInfo
-
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
-
getSize
Dimension getSize()
Returns the value of the 'Size' containment reference.- Returns:
- the value of the 'Size' containment reference.
- See Also:
setSize(Dimension)
,UMLPackage.getGraphNode_Size()
-
setSize
void setSize(Dimension value)
Sets the value of the 'Size
' containment reference.- Parameters:
value
- the new value of the 'Size' containment reference.- See Also:
getSize()
-
setSize
void setSize(double width, double height)
- Parameters:
width
- the width of the Dimensionheight
- the height of the Dimension- Since:
- 3.3.0
- See Also:
setSize(Dimension)
,Dimension.setWidth(double)
,Dimension.setHeight(double)
-
-