// List objects which are constantly updating their entries
// by observing changing values
package COM.xinit.demon.co.uk.3tier.tradertool;
import java.awt.*;
public class UpdatingList extends List {
/**
Creates an updating list with 20 rows
*/
public UpdatingList() {
this(20);
}
/**
Creates an updating list with the specified number of rows
@param nRow the number of rows
*/
public UpdatingList(int nRow) {
super(nRow);
}
}
Last Updated