VecBase.java 236 B

1234567891011121314151617
  1. /** This is the runtime support for generic vectors.
  2. *
  3. * Written August 2004, John Gough.
  4. *
  5. *
  6. *
  7. */
  8. package CP.CPJvec;
  9. public abstract class VecBase
  10. {
  11. public int tide;
  12. public abstract void expand();
  13. }