aboutsummaryrefslogtreecommitdiff
path: root/src/portfolio1/Activity.java
blob: 0f5c92979e26413b217a79d03595373745aff358 (plain)
  1. public abstract class Activity {
  2. int ects;
  3. String name;
  4. public Activity(int ects, String name) {
  5. this.ects = ects;
  6. this.name = name;
  7. }
  8. public String toString(){
  9. return name + ", " + ects + " ECTS";
  10. }
  11. public int getEcts(){
  12. return this.ects;
  13. }
  14. }