Yurttas/PL/OOL/Java/F/04/03/10/12/Q.java
Jump to navigation
Jump to search
1/**
2 * Copyright(C) 1998
3 * All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for EDUCATIONAL purposes
7 * and without fee is hereby granted provided that this
8 * copyright notice appears in all copies.
9 *
10 * @date : January 1, 1998.
11 * @author : Salih Yurttas.
12 */
13
14
15public class Q extends P {
16
17 protected int i2;
18
19 public Q() {
20 i2 = 0;
21 System.out.println("Q+0");
22 }
23
24 public Q(final int i) {
25 super(i);
26 i2 = i;
27 System.out.println("Q+1");
28 }
29
30 public int getI2() {
31 return i2;
32 }
33
34 public void setI2(final int i) {
35 i2 = i;
36 }
37
38 public void output() {
39 System.out.println(i1);
40 System.out.println(i2);
41 }
42
43}