/* * 31 July 1999 * * Extends "Vector" to allow * (0) constructor which takes argument array of objects * (1) sticking arrays on the end ?! * (2) concatenating ?! * */ //package lib; import java.util.*; public class XVector extends Vector { public XVector() { super(); } public XVector(Vector v) { super(); this.append(v); } public XVector(Object[] obs) { for (int i=0; i