Investmentpublic abstract class Investment extends Object implements SerializableThe Investment class is the base class for other
types of investment classes. The main purpose of this
class is to insure that when other classes subclass
that the data members in Investment can be accessed
and transmit correctly across the wire. |
Fields Summary |
---|
public static int | dontMapToWSDL | public String | name | private int | id | private double | avgYearlyReturn |
Constructors Summary |
---|
public Investment()
|
Methods Summary |
---|
public float | calcAvgYearlyReturn()
return 0.0F;
| public int | getId()
return id;
| public void | setId(int id)
this.id = id;
|
|