- All Known Subinterfaces:
EffectorEdge
,FluxEdge
,GraphicsEdge
,LinkEdge
public interface Edge extends Component
Superclass of all edges in Omix.
This Java interface represents an Edge in OVL.
It contain all methods available in OVL.
The static fields in this interface declaration
are public non-static instance fields in OVL.
They can be read and written from OVL code.
- Author:
- Dr. Peter Droste, Omix Visualization
-
Method Summary
Modifier and Type Method Description double
blur()
The blur of the edge.Node
dst()
returns the destination node this edge is connected with.String
getIdentifier()
Deprecated.boolean
isHidden()
Visibility of the edge.StrokeStyle
lineStyle()
The style of the edge.double
lineWidth()
The width of the edge.Model
model()
Returns the model this item belongs to.default Model
network()
Deprecated.Shadow
shadow()
The shadow of the edge.Node
src()
returns the source node this edge is connected with.Color
strokeColor()
The color for the stroke of the edge.StrokeStyle
strokeStyle()
The paint style for the stroke of the edge.double
strokeWidth()
The stroke width of the edge.double
transparency()
The transparency of the edge.Methods inherited from interface omix.lang.model.Component
customPropertyNames, getCustomProperty, id, onload, setCustomProperty, setTmpCustomProperty
-
Method Details
-
getIdentifier
Deprecated.Returns the name of the item.- Specified by:
getIdentifier
in interfaceComponent
- Specified by:
getIdentifier
in interfaceItem
- Returns:
- name
-
strokeStyle
The paint style for the stroke of the edge. -
shadow
The shadow of the edge. -
strokeColor
The color for the stroke of the edge. -
lineStyle
The style of the edge. -
lineWidth
The width of the edge. -
strokeWidth
The stroke width of the edge. -
blur
The blur of the edge. -
transparency
The transparency of the edge. -
network
Deprecated.returns the network this edge belongs to.- Returns:
- network
-
model
Model model()Returns the model this item belongs to.- Returns:
- model
-
src
Node src()returns the source node this edge is connected with.- Returns:
- source node
-
dst
Node dst()returns the destination node this edge is connected with.- Returns:
- destination node
-
isHidden
boolean isHidden()Visibility of the edge.- Returns:
- true either if src or dst node is hidden.
-