scalation.animation.Dgraph

Node

case class Node(shape: RectangularShape, label: String, primary: Boolean, color: Color, x: Double, y: Double, w: Double, h: Double) extends Product with Serializable

This class is used to represent nodes in the graph.

shape

the shape of the node

label

the label for the created node

primary

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

color

the color of the node

x

the x-coordinate (top left)

y

the y-ccordinate (top left)

w

the width

h

the height

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

Instance Constructors

  1. new Node(shape: RectangularShape, label: String, primary: Boolean, color: Color, x: Double, y: Double, w: Double, h: Double)

    shape

    the shape of the node

    label

    the label for the created node

    primary

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

    color

    the color of the node

    x

    the x-coordinate (top left)

    y

    the y-ccordinate (top left)

    w

    the width

    h

    the height

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 addEdge(edge: Edge): Boolean

    Add an outgoing edge to this node.

    Add an outgoing edge to this node.

    edge

    the edge to add

  7. def addToken(token: Token): Unit

    Add a token from this node.

    Add a token from this node.

    token

    the token to add

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def canEqual(arg0: Any): Boolean

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

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

    the color of the node

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

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  16. val h: Double

    the height

  17. def hashCode(): Int

    Definition Classes
    Node → AnyRef → Any
  18. val id: Int

    Node identifier

  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. val label: String

    the label for the created node

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

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

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

    Definition Classes
    AnyRef
  24. val outEdges: ListBuffer[Edge]

    List of outgoing edges

  25. val primary: Boolean

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

  26. def productArity: Int

    Definition Classes
    Node → Product
  27. def productElement(arg0: Int): Any

    Definition Classes
    Node → Product
  28. def productIterator: Iterator[Any]

    Definition Classes
    Product
  29. def productPrefix: String

    Definition Classes
    Node → Product
  30. def removeEdge(edge: Edge): Unit

    Remove an outgoing edge from this node.

    Remove an outgoing edge from this node.

    edge

    the edge to remove

  31. def removeToken(token: Token): Unit

    Remove a token from this node.

    Remove a token from this node.

    token

    the token to remove

  32. def setColor(color2: Color): Unit

    Set (or reset) the color.

  33. val shape: RectangularShape

    the shape of the node

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

    Definition Classes
    AnyRef
  35. def toString(): String

    Convert this node to a string.

    Convert this node to a string.

    Definition Classes
    Node → AnyRef → Any
  36. val tokens: ListBuffer[Token]

    List of tokens current in this node

  37. val w: Double

    the width

  38. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  41. val x: Double

    the x-coordinate (top left)

  42. val y: Double

    the y-ccordinate (top left)

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