01: /*
02: * This file is not part of the ItsNat framework.
03: *
04: * Original source code use and closed source derivatives are authorized
05: * to third parties with no restriction or fee.
06: * The original source code is owned by the author.
07: *
08: * This program is distributed AS IS in the hope that it will be useful,
09: * but WITHOUT ANY WARRANTY; without even the implied warranty of
10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11: *
12: * Author: Jose Maria Arranz Santamaria
13: * (C) Innowhere Software Services S.L., Spanish company, year 2007
14: */
15:
16: package org.itsnat.feashow.features.components.shared;
17:
18: public class Circle {
19: protected int radio;
20:
21: public Circle(int radio) {
22: this .radio = radio;
23: }
24:
25: public int getRadio() {
26: return radio;
27: }
28:
29: public void setRadio(int radio) {
30: this .radio = radio;
31: }
32:
33: public String toString() {
34: return Integer.toString(radio);
35: }
36: }
|