org.fpml.fpml_5.confirmation.TradeNotionalChange Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* A structure describing a change to the size of a trade.
*
* Java class for TradeNotionalChange complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TradeNotionalChange">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}TradeChangeBase">
* <sequence>
* <choice>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}TradeNotionalChange.model"/>
* <element name="sizeChange" type="{http://www.fpml.org/FpML-5/confirmation}TradeLegSizeChange" maxOccurs="unbounded"/>
* </choice>
* <element name="priceChange" type="{http://www.fpml.org/FpML-5/confirmation}TradeLegPriceChange" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TradeNotionalChange", propOrder = {
"changeInNotionalAmount",
"outstandingNotionalAmount",
"changeInNumberOfOptions",
"outstandingNumberOfOptions",
"changeInNumberOfUnits",
"outstandingNumberOfUnits",
"sizeChange",
"priceChange"
})
public class TradeNotionalChange
extends TradeChangeBase
{
protected List changeInNotionalAmount;
protected List outstandingNotionalAmount;
protected BigDecimal changeInNumberOfOptions;
protected BigDecimal outstandingNumberOfOptions;
protected BigDecimal changeInNumberOfUnits;
protected BigDecimal outstandingNumberOfUnits;
protected List sizeChange;
protected List priceChange;
/**
* Gets the value of the changeInNotionalAmount 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 set
method for the changeInNotionalAmount property.
*
*
* For example, to add a new item, do as follows:
*
* getChangeInNotionalAmount().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NonNegativeMoney }
*
*
*/
public List getChangeInNotionalAmount() {
if (changeInNotionalAmount == null) {
changeInNotionalAmount = new ArrayList();
}
return this.changeInNotionalAmount;
}
/**
* Gets the value of the outstandingNotionalAmount 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 set
method for the outstandingNotionalAmount property.
*
*
* For example, to add a new item, do as follows:
*
* getOutstandingNotionalAmount().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NonNegativeMoney }
*
*
*/
public List getOutstandingNotionalAmount() {
if (outstandingNotionalAmount == null) {
outstandingNotionalAmount = new ArrayList();
}
return this.outstandingNotionalAmount;
}
/**
* Gets the value of the changeInNumberOfOptions property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getChangeInNumberOfOptions() {
return changeInNumberOfOptions;
}
/**
* Sets the value of the changeInNumberOfOptions property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setChangeInNumberOfOptions(BigDecimal value) {
this.changeInNumberOfOptions = value;
}
/**
* Gets the value of the outstandingNumberOfOptions property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getOutstandingNumberOfOptions() {
return outstandingNumberOfOptions;
}
/**
* Sets the value of the outstandingNumberOfOptions property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setOutstandingNumberOfOptions(BigDecimal value) {
this.outstandingNumberOfOptions = value;
}
/**
* Gets the value of the changeInNumberOfUnits property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getChangeInNumberOfUnits() {
return changeInNumberOfUnits;
}
/**
* Sets the value of the changeInNumberOfUnits property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setChangeInNumberOfUnits(BigDecimal value) {
this.changeInNumberOfUnits = value;
}
/**
* Gets the value of the outstandingNumberOfUnits property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getOutstandingNumberOfUnits() {
return outstandingNumberOfUnits;
}
/**
* Sets the value of the outstandingNumberOfUnits property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setOutstandingNumberOfUnits(BigDecimal value) {
this.outstandingNumberOfUnits = value;
}
/**
* Gets the value of the sizeChange 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 set
method for the sizeChange property.
*
*
* For example, to add a new item, do as follows:
*
* getSizeChange().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TradeLegSizeChange }
*
*
*/
public List getSizeChange() {
if (sizeChange == null) {
sizeChange = new ArrayList();
}
return this.sizeChange;
}
/**
* Gets the value of the priceChange 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 set
method for the priceChange property.
*
*
* For example, to add a new item, do as follows:
*
* getPriceChange().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TradeLegPriceChange }
*
*
*/
public List getPriceChange() {
if (priceChange == null) {
priceChange = new ArrayList();
}
return this.priceChange;
}
}