Yurttas/PL/OOL/Java/F/04/03/10/12/R.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 R {
16
17 protected int i1;
18
19 public R() {
20 i1 = 0;
21 System.out.println("R+0");
22 }
23
24 public R(final int i) {
25 i1 = i;
26 System.out.println("R+1");
27 }
28
29 public int getI1() {
30 return i1;
31 }
32
33 public void setI1(final int i) {
34 i1 = i;
35 }
36
37 public void output() {
38 System.out.println(i1);
39 }
40
41}