University stuff.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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