Jedit 4.1

edu.bsu.cs.graph
Class Dynarray

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

public class Dynarray
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 Dynarray()
           
protected Dynarray(Dynarray 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

Dynarray

protected Dynarray()

Dynarray

protected Dynarray(Dynarray 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