本文整理匯總了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;
}
示例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;
}
示例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);
}
}
示例4: hasOnSessionStart
import lucee.runtime.Component; //導入方法依賴的package包/類
private boolean hasOnSessionStart(PageContext pc,Component app) {
return app!=null && app.contains(pc,ON_SESSION_START);
}