University stuff.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

LegemiddelVaneligPille.java 469B

12345678910111213
  1. class LegemiddelVaneligPille extends LegemiddelVanelig implements LegemiddelPille {
  2. private int _antallPiller;
  3. private int _virkestoffPerPille;
  4. public int antallPiller() { return _antallPiller; }
  5. public int virkestoffPerPille() { return _virkestoffPerPille; }
  6. LegemiddelVaneligPille(int antallPiller, int virkestoffPerPille) {
  7. super(antallPiller * virkestoffPerPille);
  8. this._antallPiller = antallPiller;
  9. this._virkestoffPerPille = virkestoffPerPille;
  10. }
  11. }