Package org.cxml
Class FeeAmount
- java.lang.Object
-
- org.cxml.FeeAmount
-
public class FeeAmount extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description FeeAmount()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Fee>getFee()Gets the value of the fee property.MoneygetMoney()Gets the value of the money property.voidsetMoney(Money value)Sets the value of the money property.
-
-
-
Method Detail
-
getMoney
public Money getMoney()
Gets the value of the money property.- Returns:
- possible object is
Money
-
setMoney
public void setMoney(Money value)
Sets the value of the money property.- Parameters:
value- allowed object isMoney
-
getFee
public java.util.List<Fee> getFee()
Gets the value of the fee property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the fee property.For example, to add a new item, do as follows:
getFee().add(newItem);Objects of the following type(s) are allowed in the list
Fee
-
-