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 92B

123456789
  1. class Legemiddel {
  2. static int nextId = 0;
  3. int id;
  4. Legemiddel() {
  5. id = nextId++;
  6. }
  7. }