1/**
2 * Copyright(C) 2004
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 : September 1, 2004.
11 * authorĀ : Salih Yurttas.
12 */
13
14
15public class IDA
16{
17
18 private int a0;
19 private double a1;
20
21 public IDA(int v0,
22 double v1)
23 {
24 this.a0 = v0;
25 this.a1 = v1;
26 }
27
28 public int A0
29 {
30 get
31 {
32 return a0;
33 }
34 set
35 {
36 a0 = value;
37 }
38 }
39
40 public double A1
41 {
42 get
43 {
44 return a1;
45 }
46 set
47 {
48 a1 = value;
49 }
50 }
51
52}