int ratio = Integer.parseInt( m_ratio.getText());
int openClose = Integer.parseInt( m_openClose.getText());
int shortSaleSlot = Integer.parseInt(m_shortSaleSlot.getText());
int exemptCode = Integer.parseInt(m_exemptCode.getText().length() != 0 ? m_exemptCode.getText() : "-1");
double price = parseStringToMaxDouble(m_price.getText());
m_comboLegsModel.addComboLeg( new ComboLeg(conId, ratio,
m_action.getText(), m_exchange.getText(), openClose,
shortSaleSlot, m_designatedLocation.getText(), exemptCode),
new OrderComboLeg(price) );
}
catch( Exception e) {