You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SuperClass.java 234B

12345678
  1. package concrete;
  2. import java.util.Vector;
  3. public abstract class SuperClass<T extends Cement> {
  4. Vector<T> someTs = new Vector<T>();
  5. public abstract Vector<T> getSomeTs();
  6. public abstract void addSomeTs(Vector<T> newTs);
  7. }