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


Java QueryException類代碼示例

本文整理匯總了Java中eis.exceptions.QueryException的典型用法代碼示例。如果您正苦於以下問題:Java QueryException類的具體用法?Java QueryException怎麽用?Java QueryException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


QueryException類屬於eis.exceptions包,在下文中一共展示了QueryException類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: queryProperty

import eis.exceptions.QueryException; //導入依賴的package包/類
/**
 * {@inheritDoc}
 */
@Override
public String queryProperty(String property) throws RemoteException, QueryException {
	return BW4TEnvironment.getInstance().queryProperty(property);
}
 
開發者ID:eishub,項目名稱:BW4T,代碼行數:8,代碼來源:BW4TServer.java

示例2: queryProperty

import eis.exceptions.QueryException; //導入依賴的package包/類
@Override
public String queryProperty(String property) throws QueryException {
	return null;
}
 
開發者ID:eishub,項目名稱:eis,代碼行數:5,代碼來源:EIDefaultImpl.java

示例3: queryProperty

import eis.exceptions.QueryException; //導入依賴的package包/類
/**
 * Get a property from the environment
 * 
 * @param property
 *            , the property to query
 * @return the property
 * @throws QueryException
 *             when the query fails
 */
@Override
public String queryProperty(String property) throws QueryException {
	try {
		return getClient().queryProperty(property);
	} catch (RemoteException e) {
		throw environmentSuddenDeath(e);
	}
}
 
開發者ID:eishub,項目名稱:BW4T,代碼行數:18,代碼來源:RemoteEnvironment.java

示例4: queryEntityProperty

import eis.exceptions.QueryException; //導入依賴的package包/類
/**
 * Get a property from a certain entity
 * 
 * @param entity
 *            , the entity
 * @param property
 *            , the property to query
 * @return the property
 * @throws QueryException
 *             when the query fails
 */
@Override
public String queryEntityProperty(String entity, String property) throws QueryException {
	try {
		return getClient().queryEntityProperty(entity, property);
	} catch (RemoteException e) {
		throw environmentSuddenDeath(e);
	}
}
 
開發者ID:eishub,項目名稱:BW4T,代碼行數:20,代碼來源:RemoteEnvironment.java

示例5: queryProperty

import eis.exceptions.QueryException; //導入依賴的package包/類
/**
 * Queries the interface of a certain property.
 * @param property
 * @return
 */
String queryProperty(String property) throws QueryException;
 
開發者ID:jason-lang,項目名稱:apps,代碼行數:7,代碼來源:EnvironmentInterfaceStandard.java

示例6: queryEntityProperty

import eis.exceptions.QueryException; //導入依賴的package包/類
/**
 * Queries an entity of a certain property.
 * @param property
 * @return
 */
String queryEntityProperty(String entity, String property) throws QueryException;
 
開發者ID:jason-lang,項目名稱:apps,代碼行數:7,代碼來源:EnvironmentInterfaceStandard.java


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