MVT API

math.objects
Class FunctionList

java.lang.Object
  |
  +--math.objects.FunctionList

public class FunctionList
extends java.lang.Object

The class FunctionList is used to contain Function objects used in Function objects. It extends the Vector class.

Since:
JDK1.1
Author:
Peter Staab
, Pete Fox , both for the Mathematical Visualization Project for the Department of Applied Mathematics, University of Colorado at Boulder

Field Summary
(package private)  java.util.ArrayList functions
           
 
Constructor Summary
FunctionList()
           
 
Method Summary
 void add(Function f)
           
 void clear()
           
 java.lang.Object clone()
           
 Function get(int i)
           
 java.util.Iterator iterator()
           
 void remove(Function fxn)
           
 int size()
           
 Function[] toArray()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

functions

java.util.ArrayList functions
Constructor Detail

FunctionList

public FunctionList()
Method Detail

add

public void add(Function f)

get

public Function get(int i)

clear

public void clear()

size

public int size()

iterator

public java.util.Iterator iterator()

toArray

public Function[] toArray()

remove

public void remove(Function fxn)

clone

public java.lang.Object clone()
Overrides:
clone in class java.lang.Object

MVT API

mvt.icons