当前位置: 首页>>代码示例>>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;未经允许,请勿转载。