1 package org.hibernate.test.ecid; 3 4 7 public class UniversityCourse extends Course { 8 9 private int semester; 10 11 UniversityCourse() {} 12 13 public UniversityCourse(String courseCode, String org, String description, int semester) { 14 super( courseCode, org, description ); 15 this.semester = semester; 16 } 17 18 public int getSemester() { 19 return semester; 20 } 21 22 } 23 | Popular Tags |