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.

Legemiddel.java 179B

1234567891011
  1. class Legemiddel {
  2. static int nextId = 0;
  3. int id;
  4. int totaltVirkestoff;
  5. Legemiddel(int totaltVirkestoff) {
  6. id = nextId++;
  7. this.totaltVirkestoff = totaltVirkestoff;
  8. }
  9. }