Serialized Form


Package jlink.flowchart

Class jlink.flowchart.JLCanvas extends javax.swing.JPanel implements Serializable

Serialized Fields

blockWidth

int blockWidth

blockHeight

int blockHeight

c1

java.awt.Color c1

c2

java.awt.Color c2

currentColor

java.awt.Color currentColor

rowFirstColor

java.awt.Color rowFirstColor

b

javax.swing.Box b

containerCount

int containerCount

Class jlink.flowchart.JLFlowchart extends JLPage implements Serializable

Serialized Fields

g

JLGraph g

Class jlink.flowchart.JLPage extends javax.swing.JLayeredPane implements Serializable

Serialized Fields

pageType

int pageType
The current page type of this JLPage.

See Also:
JLPage.setJLPageType(int type)

marginsOn

boolean marginsOn
Margins property of JLPage. true if margins are being used, false if not.

Margins help prevent components from falling outside the boundaries of the JLPage.

See Also:
JLPage.setMargins(int top, int left, int bottom, int right)

topMargin

int topMargin
Top margin for this JLPage. Default value is 0

See Also:
JLPage.setTopMargin(int value)

leftMargin

int leftMargin
Left margin for this JLPage. Default value is 0

See Also:
JLPage.setLeftMargin(int value)

bottomMargin

int bottomMargin
Bottom margin for this JLPage. Default value is 0

See Also:
JLPage.setBottomMargin(int value)

rightMargin

int rightMargin
Right margin for this JLPage. Default value is 0

See Also:
JLPage.setRightMargin(int value)

bordersOn

boolean bordersOn
JLPage property that holds information about if the page will have borders around it or not.

See Also:
JLPage.setBordersOn(boolean value)

containerBorderColor

java.awt.Color containerBorderColor
JLPage property that holds information about the border color.

See Also:
JLPage.setJLPageBorderColor(Color c)

shadowsOn

boolean shadowsOn
JLPage property with information about if shadows are on.


containerShadowColor

java.awt.Color containerShadowColor
JLPage property with information about the color of the shadows.


containerBackgroundColor

java.awt.Color containerBackgroundColor
JLPage property with information about the color of the background.


bgTransparency

boolean bgTransparency
Deprecated. Use JLPage.PAGE_TRANSPARENT and JLPage.setJLPageType(int type) instead.
JLPage property with information about the transparency status of the background. The default value is false meaning that the background is not transparent.


w

int w
JLPage width property in pixels. Default of 200.


h

int h
JLPage height property in pixels. Default of 200.


currentOrientation

int currentOrientation
The orientation property of JLPage.

See Also:
JLPage.setJLPageOrientation(int orientation)

Class jlink.flowchart.JLWorksheet extends JLPage implements Serializable

Serialized Fields

chartName

java.lang.String chartName
The name of this flowchart.


processName

java.lang.String processName
The process which this chart is showing.


processNumber

int processNumber
The number of this process.


date

java.lang.String date
The date of authoring this chart.


page

int page
The page number of this chart.


chartID

int chartID
The chart ID.


author

java.lang.String author
The author of this chart.


description

java.lang.String description
The chart description to appear in the footer.


displayFlowCells

boolean displayFlowCells
Property detailing if the flow cells are to be displayed on the JLWorksheet. Defaults as true.


Package jlink.flowchart.graph

Class jlink.flowchart.graph.DuplicateJLEdgeException extends java.lang.Exception implements Serializable

Serialized Fields

duplicateJLEdge

JLEdge duplicateJLEdge

duplicateJLEdgeSet

JLEdgeSet duplicateJLEdgeSet

Class jlink.flowchart.graph.DuplicateJLVertexException extends java.lang.Exception implements Serializable

Serialized Fields

duplicateVertex

JLVertex duplicateVertex
JLVertex that is responsible for throwing this duplicate exception.


duplicateVertexSet

JLVertexSet duplicateVertexSet
The JLVertexSet that holds the duplicated JLVertex.

Class jlink.flowchart.graph.IncompleteJLEdgeException extends java.lang.Exception implements Serializable

Serialized Fields

headVertex

JLVertex headVertex

tailVertex

JLVertex tailVertex

missingJLVertex

int missingJLVertex

Class jlink.flowchart.graph.JLEdge extends javax.swing.JComponent implements Serializable

Serialized Fields

isCompound

boolean isCompound

headVertex

JLVertex headVertex

tailVertex

JLVertex tailVertex

edgeID

int edgeID
A unique identification number for JLEdge. While any two edges may be identical as far as the vertices they connect, their names etc. no two JLEdge classes can have the same edgeID. This can be useful when searching or querying sets/groups of edges. As each JLEdge is created, this value is incremented by 1.

See Also:
JLEdge.getJLEdgeID()

name

java.lang.String name

Class jlink.flowchart.graph.JLVertex extends javax.swing.JComponent implements Serializable

Serialized Fields

vertexID

int vertexID

displayType

int displayType

displayTypeOverridden

boolean displayTypeOverridden

name

java.lang.String name

incoming

JLEdgeSet incoming

outgoing

JLEdgeSet outgoing