當前位置: 首頁>>代碼示例>>Java>>正文


Java Formats類代碼示例

本文整理匯總了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);
		}
	});
}
 
開發者ID:qerio,項目名稱:goib,代碼行數:19,代碼來源:ApiDemo.java

示例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);
		}
	});
}
 
開發者ID:softwarespartan,項目名稱:TWS,代碼行數:19,代碼來源:ApiDemo.java

示例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;
	}
}
 
開發者ID:qerio,項目名稱:goib,代碼行數:13,代碼來源:AccountPositionsMultiPanel.java

示例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;
	}
}
 
開發者ID:qerio,項目名稱:goib,代碼行數:12,代碼來源:PositionsPanel.java

示例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;
	}
}
 
開發者ID:qerio,項目名稱:goib,代碼行數:16,代碼來源:TopModel.java

示例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) );
}
 
開發者ID:qerio,項目名稱:goib,代碼行數:4,代碼來源:AccountSummaryPanel.java

示例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);
}
 
開發者ID:qerio,項目名稱:goib,代碼行數:4,代碼來源:AccountSummaryPanel.java


注:本文中的com.ib.controller.Formats類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。