de.cau.cs.kieler.keg
Interface Edge

All Superinterfaces:
EObject, KEdge, KGraphElement, KLabeledGraphElement, Notifier
All Known Implementing Classes:
EdgeImpl

public interface Edge
extends KEdge

A representation of the model object 'Edge'.

The following features are supported:

See Also:
KEGPackage.getEdge()
Rating red
Generated:
This code was automatically generated.
Model element

Method Summary
 String getHeadLabel()
          Returns the value of the 'Head Label' attribute.
 String getMidLabel()
          Returns the value of the 'Mid Label' attribute.
 String getTailLabel()
          Returns the value of the 'Tail Label' attribute.
 EdgeType getType()
          Returns the value of the 'Type' attribute.
 boolean isDirected()
          Returns the value of the 'Directed' attribute.
 void setDirected(boolean value)
          Sets the value of the 'Directed' attribute.
 void setHeadLabel(String value)
          Sets the value of the 'Head Label' attribute.
 void setMidLabel(String value)
          Sets the value of the 'Mid Label' attribute.
 void setTailLabel(String value)
          Sets the value of the 'Tail Label' attribute.
 void setType(EdgeType value)
          Sets the value of the 'Type' attribute.
 
Methods inherited from interface de.cau.cs.kieler.core.kgraph.KEdge
getSource, getSourcePort, getTarget, getTargetPort, setSource, setSourcePort, setTarget, setTargetPort
 
Methods inherited from interface de.cau.cs.kieler.core.kgraph.KLabeledGraphElement
getLabels
 
Methods inherited from interface de.cau.cs.kieler.core.kgraph.KGraphElement
getData, getData, getData
 
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 org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Method Detail

getHeadLabel

String getHeadLabel()
Returns the value of the 'Head Label' attribute.

If the meaning of the 'Head Label' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Head Label' attribute.
See Also:
setHeadLabel(String), KEGPackage.getEdge_HeadLabel()
Generated:
This code was automatically generated.
Model element

setHeadLabel

void setHeadLabel(String value)
Sets the value of the 'Head Label' attribute.

Parameters:
value - the new value of the 'Head Label' attribute.
See Also:
getHeadLabel()
Generated:
This code was automatically generated.

getMidLabel

String getMidLabel()
Returns the value of the 'Mid Label' attribute.

If the meaning of the 'Mid Label' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Mid Label' attribute.
See Also:
setMidLabel(String), KEGPackage.getEdge_MidLabel()
Generated:
This code was automatically generated.
Model element

setMidLabel

void setMidLabel(String value)
Sets the value of the 'Mid Label' attribute.

Parameters:
value - the new value of the 'Mid Label' attribute.
See Also:
getMidLabel()
Generated:
This code was automatically generated.

getTailLabel

String getTailLabel()
Returns the value of the 'Tail Label' attribute.

If the meaning of the 'Tail Label' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Tail Label' attribute.
See Also:
setTailLabel(String), KEGPackage.getEdge_TailLabel()
Generated:
This code was automatically generated.
Model element

setTailLabel

void setTailLabel(String value)
Sets the value of the 'Tail Label' attribute.

Parameters:
value - the new value of the 'Tail Label' attribute.
See Also:
getTailLabel()
Generated:
This code was automatically generated.

isDirected

boolean isDirected()
Returns the value of the 'Directed' attribute. The default value is "false".

If the meaning of the 'Directed' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Directed' attribute.
See Also:
setDirected(boolean), KEGPackage.getEdge_Directed()
Generated:
This code was automatically generated.
Model element:
default=false
required=true

setDirected

void setDirected(boolean value)
Sets the value of the 'Directed' attribute.

Parameters:
value - the new value of the 'Directed' attribute.
See Also:
isDirected()
Generated:
This code was automatically generated.

getType

EdgeType getType()
Returns the value of the 'Type' attribute. The literals are from the enumeration EdgeType.

If the meaning of the 'Type' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Type' attribute.
See Also:
EdgeType, setType(EdgeType), KEGPackage.getEdge_Type()
Generated:
This code was automatically generated.
Model element:
required=true

setType

void setType(EdgeType value)
Sets the value of the 'Type' attribute.

Parameters:
value - the new value of the 'Type' attribute.
See Also:
EdgeType, getType()
Generated:
This code was automatically generated.