本文整理汇总了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);
}