FileDocCategorySizeDatePackage
BondInvestment.javaAPI DocApache Axis 1.44729Sat Apr 22 18:57:28 BST 2006test.wsdl.roundtrip

BondInvestment

public class BondInvestment extends Object implements Serializable
The BondInvestment class contains data members for all the primitives, standard Java classes, and primitive wrapper classes. This class is used to test that all the data members transmit correctly over the wire.
version
1.00 06 Feb 2002
author
Brent Ulbricht

Fields Summary
private boolean
taxableInvestment
public byte
taxIndicator
public short
docType
public int
stockBeta
public long
yield
public float
lastTradePrice
public double
fiftyTwoWeekHigh
private String
tradeExchange
public BigInteger
portfolioType
public BigDecimal
bondAmount
public Calendar
callableDate
public byte[]
byteArray
private short[]
shortArray
private Boolean
wrapperBoolean
private Byte
wrapperByte
private Short
wrapperShort
public Integer
wrapperInteger
public Float
wrapperFloat
private Double
wrapperDouble
public Byte[]
wrapperByteArray
public Short[]
wrapperShortArray
private CallOptions[]
options
public Object
options2
public Object
options3
public int
id
public HashMap
map
private static String[]
_attrs
Constructors Summary
public BondInvestment()


    
Methods Summary
public static java.lang.String[]getAttributeElements()
Return list of bean field names that are attributes


                  
        
        return _attrs;
    
public java.util.HashMapgetMap()

        return map;
    
public CallOptionsgetOptions(int i)

        return options[i];
    
public CallOptions[]getOptions()

        return options;
    
public short[]getShortArray()

        return this.shortArray;
    
public booleangetTaxableInvestment()

        return this.taxableInvestment;
    
public java.lang.StringgetTradeExchange()

        return this.tradeExchange;
    
public java.lang.BooleangetWrapperBoolean()

        return this.wrapperBoolean;
    
public java.lang.BytegetWrapperByte()

        return this.wrapperByte;
    
public java.lang.DoublegetWrapperDouble()

        return this.wrapperDouble;
    
public java.lang.ShortgetWrapperShort()

        return this.wrapperShort;
    
public voidsetMap(java.util.HashMap map)

        this.map = map;
    
public voidsetOptions(int i, CallOptions value)

        if (options == null ||
            options.length <= i) {
            CallOptions[] a = new CallOptions[i + 1];
            if (options != null) {
                for(int j=0; j<options.length; j++)
                    a[j] = options[j];
            }
            options = a;
        }
        options[i] = value;
    
public voidsetOptions(CallOptions[] options)

        this.options = options;
    
public voidsetShortArray(short[] shortArray)

        this.shortArray = shortArray;
    
public voidsetTaxableInvestment(boolean taxableInvestment)

        this.taxableInvestment = taxableInvestment;
    
public voidsetTradeExchange(java.lang.String tradeExchange)

        this.tradeExchange = tradeExchange; 
    
public voidsetWrapperBoolean(java.lang.Boolean wrapperBoolean)

        this.wrapperBoolean = wrapperBoolean;
    
public voidsetWrapperByte(java.lang.Byte wrapperByte)

        this.wrapperByte = wrapperByte;
    
public voidsetWrapperDouble(java.lang.Double wrapperDouble)

        this.wrapperDouble = wrapperDouble;
    
public voidsetWrapperShort(java.lang.Short wrapperShort)

        this.wrapperShort = wrapperShort;