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.

123456789101112131415161718192021
  1. class Ord {
  2. private String tekst;
  3. private int antall;
  4. public Ord(String tekst) {
  5. this.tekst = tekst;
  6. antall = 1;
  7. }
  8. public void oekAntall() {
  9. antall += 1;
  10. }
  11. public int hentAntall() {
  12. return antall;
  13. }
  14. public String toString() {
  15. return tekst;
  16. }
  17. }