Jedit 4.1

edu.bsu.cs.graph
Class EdgeArray

java.lang.Object
  |
  +--edu.bsu.cs.graph.EdgeArray
All Implemented Interfaces:
Serializable

public class EdgeArray
extends Object
implements Serializable

This is a class for a dynamic (n x n) array of Edges.

Since:
13 Sep 1997
Author:
Aaron Nall
See Also:
Serializable, Serialized Form

Constructor Summary
protected EdgeArray()
           
protected EdgeArray(EdgeArray source)
           
 
Method Summary
protected  void decrement()
           
protected  void increment()
           
protected  void removeElement()
           
protected  void removeElement(int index)
           
protected  void removeLevel(int level)
           
protected  int size()
           
 String toString()
           
protected  Edge value(int x, int y)
           
protected  Edge value(int x, int y, Edge newObject)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EdgeArray

protected EdgeArray()

EdgeArray

protected EdgeArray(EdgeArray source)
Method Detail

increment

protected void increment()

decrement

protected void decrement()

value

protected Edge value(int x,
                     int y)

value

protected Edge value(int x,
                     int y,
                     Edge newObject)

size

protected int size()

toString

public String toString()
Overrides:
toString in class Object

removeElement

protected void removeElement()

removeElement

protected void removeElement(int index)

removeLevel

protected void removeLevel(int level)

Jedit 4.1