scalation.animation.Dgraph

Edge

case class Edge(shape: CurvilinearShape, label: String, primary: Boolean, color: Color, from: Node, to: Node, bend: Double) extends Product with Serializable

This class is used to represent edges in the graph. If bend = 0, a straight line is created, otherwise a quadratic curve is created.

shape

the shape (line/curve) of the edge

label

the label for the created edge

primary

whether it is a primary/transition/true or secondary/place node/false

color

the color of the edge

from

the origination node

to

the destination node

bend

the amount of bend in the curve

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Edge
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Edge(shape: CurvilinearShape, label: String, primary: Boolean, color: Color, from: Node, to: Node, x1: Double, y1: Double, xc: Double, yc: Double, x2: Double, y2: Double)

    Construct an edge as a curve with explicit coordinates.

    Construct an edge as a curve with explicit coordinates.

    shape

    the shape (curve) of the edge

    label

    the label for the created edge

    primary

    whether it is a primary/transition/true or secondary/place node/false

    color

    the color of the edge

    from

    the origination node

    to

    the destination node

    x1

    the x-coordinate of the edge's start

    y1

    the y-coordinate of the edge's start

    xc

    the x-coordinate of the edge's control point

    yc

    the y-coordinate of the edge's control point

    x2

    the x-coordinate of the edge's end

    y2

    the y-coordinate of the edge's end

  2. new Edge(shape: CurvilinearShape, label: String, primary: Boolean, color: Color, from: Node, to: Node, x1: Double, y1: Double, x2: Double, y2: Double)

    Construct an edge as a line with explicit coordinates.

    Construct an edge as a line with explicit coordinates.

    shape

    the shape (line) of the edge

    label

    the label for the created edge

    primary

    whether it is a primary/transition/true or secondary/place node/false

    color

    the color of the edge

    from

    the origination node

    to

    the destination node

    x1

    the x-coordinate of the edge's start

    y1

    the y-coordinate of the edge's start

    x2

    the x-coordinate of the edge's end

    y2

    the y-coordinate of the edge's end

  3. new Edge(shape: CurvilinearShape, label: String, primary: Boolean, color: Color, from: Node, to: Node)

    Construct an edge with no bend.

    Construct an edge with no bend.

    shape

    the shape (line/curve) of the edge

    label

    the label for the created edge

    primary

    whether it is a primary/transition/true or secondary/place node/false

    color

    the color of the edge

    from

    the origination node

    to

    the destination node

  4. new Edge(shape: CurvilinearShape, label: String, primary: Boolean, color: Color, from: Node, to: Node, bend: Double)

    shape

    the shape (line/curve) of the edge

    label

    the label for the created edge

    primary

    whether it is a primary/transition/true or secondary/place node/false

    color

    the color of the edge

    from

    the origination node

    to

    the destination node

    bend

    the amount of bend in the curve

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addToken(token: Token): Unit

    Add a token from this node.

    Add a token from this node.

    token

    the token to add

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. val bend: Double

    the amount of bend in the curve

  9. def canEqual(arg0: Any): Boolean

    Definition Classes
    Edge → Equals
  10. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. var color: Color

    the color of the edge

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    Edge → Equals → AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. val from: Node

    the origination node

  16. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    Edge → AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. val label: String

    the label for the created edge

  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. val primary: Boolean

    whether it is a primary/transition/true or secondary/place node/false

  24. def productArity: Int

    Definition Classes
    Edge → Product
  25. def productElement(arg0: Int): Any

    Definition Classes
    Edge → Product
  26. def productIterator: Iterator[Any]

    Definition Classes
    Product
  27. def productPrefix: String

    Definition Classes
    Edge → Product
  28. def setColor(color2: Color): Unit

    Set (or reset) the color.

  29. val shape: CurvilinearShape

    the shape (line/curve) of the edge

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. val to: Node

    the destination node

  32. def toString(): String

    Convert this edge to a string.

    Convert this edge to a string.

    Definition Classes
    Edge → AnyRef → Any
  33. val tokens: ListBuffer[Token]

    List of tokens current on this edge.

  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Deprecated Value Members

  1. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any