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.

123456789
  1. class HvitResept extends Resept {
  2. HvitResept(int id, String utskriverNavn, int pasientNr, Legemiddel legemiddel, int reit) {
  3. super(id, utskriverNavn, pasientNr, legemiddel, reit);
  4. }
  5. public String identify() {
  6. return "Hvit"+super.identify();
  7. }
  8. }