Class WFNodeAssoc

java.lang.Object
byps.BValueClass
de.elo.ix.client.ValueClass
de.elo.ix.client.WFNodeAssoc
All Implemented Interfaces:
Serializable

public class WFNodeAssoc extends ValueClass implements Serializable

Represents a bridge (connection) in a workflow diagram

Copyright: Copyright (c) 2004

Organisation: ELO Digital Office GmbH

See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected boolean
    Indicates whether the bridge has been passed through/over (used).
    protected int
    Start node (starting location)
    protected int
    Destination (end) node
    protected int
    Type of bridge (connection).

    Fields inherited from class byps.BValueClass

    bypsClient, changedMembers, dbHelper, FLAG_SEALED, flags
  • Constructor Summary

    Constructors
    Constructor
    Description
     
    WFNodeAssoc(int fromNode, int toNode, int type)
     
     
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
    int
     
    int
     
    boolean
     
    void
    setDone(boolean done)
     
    void
    setNodeFrom(int nodeFrom)
     
    void
    setNodeTo(int nodeTo)
     
    void
    setType(int type)
     
     

    Methods inherited from class byps.BValueClass

    getBypsClient, getChangedMembers, getDbHelper, isChangedMember, isSealed, seal, seal, setBypsClient, setChangedMember, setChangedMembers, setDbHelper

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • done

      protected boolean done
      Indicates whether the bridge has been passed through/over (used). For a condition node, this member is true for both paths (TRUE and FALSE) if either has been passed. Thus it cannot be used in a client application to find out, which path the workflow has taken.
    • nodeFrom

      protected int nodeFrom
      Start node (starting location)
    • nodeTo

      protected int nodeTo
      Destination (end) node
    • type

      protected int type
  • Constructor Details

    • WFNodeAssoc

      public WFNodeAssoc()
    • WFNodeAssoc

      public WFNodeAssoc(int fromNode, int toNode, int type)
    • WFNodeAssoc

      public WFNodeAssoc(WFNodeAssoc rhs)
  • Method Details

    • isDone

      public boolean isDone()
    • setDone

      public void setDone(boolean done)
    • getNodeFrom

      public int getNodeFrom()
    • setNodeFrom

      public void setNodeFrom(int nodeFrom)
    • getNodeTo

      public int getNodeTo()
    • setNodeTo

      public void setNodeTo(int nodeTo)
    • getType

      public int getType()
    • setType

      public void setType(int type)
    • toString

      public String toString()
      Overrides:
      toString in class Object