Package org.marketcetera.trade
Interface MutableOrderSummary
-
- All Superinterfaces:
OrderSummary
public interface MutableOrderSummary extends OrderSummary
- Since:
- $Release$
- Version:
- $Id$
- Author:
- Colin DuPlantis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetAccount(String inAccount)Set the account value.voidsetActor(User inActor)Set the order status actor value.voidsetAveragePrice(BigDecimal inAveragePrice)Set the average price value.voidsetBrokerId(BrokerID inBrokerId)Set the brokerId value.voidsetCumulativeQuantity(BigDecimal inCumulativeQuantity)Set the cumulative quantity value.voidsetInstrument(Instrument inInstrument)Set the instrument value.voidsetLastPrice(BigDecimal inLastPrice)Set the last price value.voidsetLastQuantity(BigDecimal inLastQuantity)Set the last quantity value.voidsetLeavesQuantity(BigDecimal inLeavesQuantity)Set the leaves quantity value.voidsetOrderId(OrderID inOrderId)Set the orderId value.voidsetOrderPrice(BigDecimal inOrderPrice)Set the order price value.voidsetOrderQuantity(BigDecimal inOrderQuantity)Set the order quantity value.voidsetOrderStatus(OrderStatus inOrderStatus)Set the orderStatus value.voidsetReport(Report inReport)Set the report value.voidsetRootOrderId(OrderID inRootOrderId)Set the rootOrderId value.voidsetSendingTime(Date inSendingTime)Set the sending time value.voidsetSide(Side inSide)Set the side value.voidsetTransactTime(Date inTransactTime)Set the transact time value.voidsetViewer(User inViewer)Set the order status viewer value.-
Methods inherited from interface org.marketcetera.trade.OrderSummary
getAccount, getActor, getAveragePrice, getBrokerId, getCumulativeQuantity, getInstrument, getLastPrice, getLastQuantity, getLeavesQuantity, getOrderId, getOrderPrice, getOrderQuantity, getOrderStatus, getReport, getRootOrderId, getSendingTime, getSide, getTransactTime, getViewer
-
-
-
-
Method Detail
-
setOrderStatus
void setOrderStatus(OrderStatus inOrderStatus)
Set the orderStatus value.- Parameters:
inOrderStatus- anOrderStatusvalue
-
setReport
void setReport(Report inReport)
Set the report value.- Parameters:
inReport- aReportvalue
-
setRootOrderId
void setRootOrderId(OrderID inRootOrderId)
Set the rootOrderId value.- Parameters:
inRootOrderId- anOrderIDvalue
-
setOrderId
void setOrderId(OrderID inOrderId)
Set the orderId value.- Parameters:
inOrderId- anOrderIDvalue
-
setCumulativeQuantity
void setCumulativeQuantity(BigDecimal inCumulativeQuantity)
Set the cumulative quantity value.- Parameters:
inCumulativeQuantity- aBigDecimalvalue
-
setAccount
void setAccount(String inAccount)
Set the account value.- Parameters:
inAccount- aStringvalue
-
setBrokerId
void setBrokerId(BrokerID inBrokerId)
Set the brokerId value.- Parameters:
inBrokerId- aBrokerIDvalue
-
setSide
void setSide(Side inSide)
Set the side value.- Parameters:
inSide- aSidevalue
-
setInstrument
void setInstrument(Instrument inInstrument)
Set the instrument value.- Parameters:
inInstrument- anInstrumentvalue
-
setAveragePrice
void setAveragePrice(BigDecimal inAveragePrice)
Set the average price value.- Parameters:
inAveragePrice- aBigDecimalvalue
-
setLastQuantity
void setLastQuantity(BigDecimal inLastQuantity)
Set the last quantity value.- Parameters:
inLastQuantity- aBigDecimalvalue
-
setLeavesQuantity
void setLeavesQuantity(BigDecimal inLeavesQuantity)
Set the leaves quantity value.- Parameters:
inLeavesQuantity- aBigDecimalvalue
-
setOrderQuantity
void setOrderQuantity(BigDecimal inOrderQuantity)
Set the order quantity value.- Parameters:
inOrderQuantity- aBigDecimalvalue
-
setLastPrice
void setLastPrice(BigDecimal inLastPrice)
Set the last price value.- Parameters:
inLastPrice- aBigDecimalvalue
-
setOrderPrice
void setOrderPrice(BigDecimal inOrderPrice)
Set the order price value.- Parameters:
inOrderPrice- aBigDecimalvalue
-
setSendingTime
void setSendingTime(Date inSendingTime)
Set the sending time value.- Parameters:
inSendingTime- aDatevalue
-
setTransactTime
void setTransactTime(Date inTransactTime)
Set the transact time value.- Parameters:
inTransactTime- aDatevalue
-
setActor
void setActor(User inActor)
Set the order status actor value.- Parameters:
inActor- aUservalue
-
setViewer
void setViewer(User inViewer)
Set the order status viewer value.- Parameters:
inViewer- aUservalue
-
-