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


Java Component.contains方法代碼示例

本文整理匯總了Java中lucee.runtime.Component.contains方法的典型用法代碼示例。如果您正苦於以下問題:Java Component.contains方法的具體用法?Java Component.contains怎麽用?Java Component.contains使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在lucee.runtime.Component的用法示例。


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

示例1: handlePageException

import lucee.runtime.Component; //導入方法依賴的package包/類
private PageException handlePageException(PageContextImpl pci, Component app, PageException pe, PageSource requestedPage, String targetPage, RefBoolean goon) throws PageException {
	PageException _pe=pe;
	if(pe instanceof ModernAppListenerException) {
		_pe=((ModernAppListenerException) pe).getPageException();
	}
	
	if(!Abort.isSilentAbort(_pe)) {
		if(_pe instanceof MissingIncludeException){
			if(((MissingIncludeException) _pe).getPageSource().equals(requestedPage)){
				
				if(app.contains(pci,ON_MISSING_TEMPLATE)) {
					goon.setValue(false);
					if(!Caster.toBooleanValue(call(app,pci, ON_MISSING_TEMPLATE, new Object[]{targetPage},true),true))
						return pe;
				}
				else return pe;
			}
			else return pe;
		}
		else return pe;
	}
	else {
		goon.setValue(false);
		if(app.contains(pci,ON_ABORT)) {
			call(app,pci, ON_ABORT, new Object[]{targetPage},true);
		}
	}
	return null;
}
 
開發者ID:lucee,項目名稱:Lucee,代碼行數:30,代碼來源:ModernAppListener.java

示例2: onApplicationStart

import lucee.runtime.Component; //導入方法依賴的package包/類
@Override
public boolean onApplicationStart(PageContext pc) throws PageException {
	Component app = apps.get(pc.getApplicationContext().getName());
	if(app!=null && app.contains(pc,ON_APPLICATION_START)) {
		Object rtn = call(app,pc, ON_APPLICATION_START, ArrayUtil.OBJECT_EMPTY,true);
		return Caster.toBooleanValue(rtn,true);
	}
	return true;
}
 
開發者ID:lucee,項目名稱:Lucee,代碼行數:10,代碼來源:ModernAppListener.java

示例3: onDebug

import lucee.runtime.Component; //導入方法依賴的package包/類
@Override
public void onDebug(PageContext pc) throws PageException {
	if(((PageContextImpl)pc).isGatewayContext() || !pc.getConfig().debug()) return;
	Component app = apps.get(pc.getApplicationContext().getName());
	if(app!=null && app.contains(pc,ON_DEBUG)) {
		call(app,pc, ON_DEBUG, new Object[]{pc.getDebugger().getDebuggingData(pc)},true);
		return;
	}
	try {
		pc.getDebugger().writeOut(pc);
	} 
	catch (IOException e) {
		throw Caster.toPageException(e);
	}
}
 
開發者ID:lucee,項目名稱:Lucee,代碼行數:16,代碼來源:ModernAppListener.java

示例4: hasOnSessionStart

import lucee.runtime.Component; //導入方法依賴的package包/類
private boolean hasOnSessionStart(PageContext pc,Component app) {
	return app!=null && app.contains(pc,ON_SESSION_START);
}
 
開發者ID:lucee,項目名稱:Lucee,代碼行數:4,代碼來源:ModernAppListener.java


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