本文整理匯總了Java中com.ib.controller.Formats類的典型用法代碼示例。如果您正苦於以下問題:Java Formats類的具體用法?Java Formats怎麽用?Java Formats使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Formats類屬於com.ib.controller包,在下文中一共展示了Formats類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: connected
import com.ib.controller.Formats; //導入依賴的package包/類
@Override public void connected() {
show( "connected");
m_connectionPanel.m_status.setText( "connected");
controller().reqCurrentTime( new ITimeHandler() {
@Override public void currentTime(long time) {
show( "Server date/time is " + Formats.fmtDate(time * 1000) );
}
});
controller().reqBulletins( true, new IBulletinHandler() {
@Override public void bulletin(int msgId, NewsType newsType, String message, String exchange) {
String str = String.format( "Received bulletin: type=%s exchange=%s", newsType, exchange);
show( str);
show( message);
}
});
}
示例2: connected
import com.ib.controller.Formats; //導入依賴的package包/類
@Override public void connected() {
show( "connected");
m_connectionPanel.m_status.setText( "connected");
m_controller.reqCurrentTime( new ITimeHandler() {
@Override public void currentTime(long time) {
show( "Server date/time is " + Formats.fmtDate(time * 1000) );
}
});
m_controller.reqBulletins( true, new IBulletinHandler() {
@Override public void bulletin(int msgId, NewsType newsType, String message, String exchange) {
String str = String.format( "Received bulletin: type=%s exchange=%s", newsType, exchange);
show( str);
show( message);
}
});
}
示例3: getValueAt
import com.ib.controller.Formats; //導入依賴的package包/類
@Override public Object getValueAt(int rowIn, int col) {
PositionRow row = m_list.get( rowIn);
switch( col) {
case 0: return row.m_account;
case 1: return row.m_modelCode;
case 2: return row.m_contract.description();
case 3: return row.m_position;
case 4: return Formats.fmt( row.m_avgCost);
default: return null;
}
}
示例4: getValueAt
import com.ib.controller.Formats; //導入依賴的package包/類
@Override public Object getValueAt(int rowIn, int col) {
PositionRow row = m_list.get( rowIn);
switch( col) {
case 0: return row.m_account;
case 1: return row.m_contract.description();
case 2: return row.m_position;
case 3: return Formats.fmt( row.m_avgCost);
default: return null;
}
}
示例5: getValueAt
import com.ib.controller.Formats; //導入依賴的package包/類
@Override public Object getValueAt(int rowIn, int col) {
TopRow row = m_rows.get( rowIn);
switch( col) {
case 0: return row.m_description;
case 1: return row.m_bidSize;
case 2: return fmt( row.m_bid);
case 3: return fmt( row.m_ask);
case 4: return row.m_askSize;
case 5: return fmt( row.m_last);
case 6: return fmtTime( row.m_lastTime);
case 7: return row.change();
case 8: return Formats.fmt0( row.m_volume);
default: return null;
}
}
示例6: fmtPct
import com.ib.controller.Formats; //導入依賴的package包/類
public String fmtPct(String val) {
return val == null || val.length() == 0 ? null : Formats.fmtPct( Double.parseDouble( val) );
}
示例7: fmtTime
import com.ib.controller.Formats; //導入依賴的package包/類
public String fmtTime(String val) {
return val == null || val.length() == 0 || val.equals( "0") ? null : Formats.fmtDate( Long.parseLong( val) * 1000);
}