[all packages] [package ] [class hierarchy] [index]

public abstract class Graph0

(source file: Graph0.java)
java.lang.Object
   |
   +----Drawable
           |
           +----Graph0

The pure class interface.
public abstract class Graph0
  extends Drawable
A graph without a control line.

Author:
Alan Jeffrey
Version: v1.0 1998/06/11

Constuctor Index

O Graph0(Constraints, Interface, Interface)
Create a new graph.

Variables Index

O C
The constraints of the graph.
O bot
The variable for the bottom of the graph.
O left
The variable for the lhs of the graph.
O right
The variable for the rhs of the graph.
O source
The interface at the lhs of the graph.
O target
The interface at the rhs of the graph.
O top
The variable for the top of the graph.

Methods

O pad()
Pad the graph a bit.

Constructors

O Graph0
public Graph0(Constraints C,
              Interface source,
              Interface target);
Create a new graph.

Parameters:
C - the constraint set.
source - the incoming interface.
target - the outgoing interface.

Variables

O left
public int left;
The variable for the lhs of the graph.

O right

public int right;
The variable for the rhs of the graph.

O bot

public int bot;
The variable for the bottom of the graph.

O top

public int top;
The variable for the top of the graph.

O C

public Constraints C;
The constraints of the graph.

O source

public Interface source;
The interface at the lhs of the graph.

O target

public Interface target;
The interface at the rhs of the graph.

Methods

O pad
public Graph0 pad();
Pad the graph a bit.

Returns:
this graph, with extra space at the left and right.


[all packages] [package ] [class hierarchy] [index]
Graph0.html