Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package subscribers;
- public class Lecturer extends Subscriber {
- /* properties */
- private String courses[];
- /* set, get methods */
- /* constructors */
- public Lecturer(String name) {
- super(name);
- }
- /* methods */
- @Override
- public String toString() {
- return super.toString();
- }
- public void writeExam() {
- }
- }
Add Comment
Please, Sign In to add comment