University stuff.
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.

GenHylle.java 193B

123456
  1. interface GenHylle<T> {
  2. public int hentStorrelse();
  3. public void settInn(int plass, T ting) throws Exception;
  4. public boolean erLedig(int plass) throws Exception;
  5. public T hent(int plass);
  6. }