University stuff.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }