当前位置: 首页>>代码示例>>Java>>正文


Java Component.MODIFIER_NONE属性代码示例

本文整理汇总了Java中lucee.runtime.Component.MODIFIER_NONE属性的典型用法代码示例。如果您正苦于以下问题:Java Component.MODIFIER_NONE属性的具体用法?Java Component.MODIFIER_NONE怎么用?Java Component.MODIFIER_NONE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在lucee.runtime.Component的用法示例。


在下文中一共展示了Component.MODIFIER_NONE属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: UDFPropertiesImpl

public UDFPropertiesImpl(
		Page page,
		PageSource pageSource,
        FunctionArgument[] arguments,
		int index,
        String functionName, 
        short returnType, 
        String strReturnFormat, 
        boolean output, 
        int access) {
	this(page,pageSource, arguments, index, functionName, returnType,strReturnFormat, output, access, null,
			"","", "", null, null, null, null,Component.MODIFIER_NONE, null);
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:13,代码来源:UDFPropertiesImpl.java

示例2: toModifier

public static int toModifier(String str, int emptyValue, int defaultValue) {
	if(StringUtil.isEmpty(str,true)) return emptyValue;
	str=str.trim();
	if("abstract".equalsIgnoreCase(str)) return Component.MODIFIER_ABSTRACT;
	if("final".equalsIgnoreCase(str)) return Component.MODIFIER_FINAL;
	if("none".equalsIgnoreCase(str)) return Component.MODIFIER_NONE;
	return defaultValue;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:8,代码来源:ComponentUtil.java

示例3: componentStatement

private final TagComponent componentStatement(ExprData data, Body parent) throws TemplateException {
	
	int pos = data.srcCode.getPos();
	
	// get the idendifier in front of
	String id=identifier(data, false);
	if(id==null) {
		data.srcCode.setPos(pos);
		return null;
	}
	
	int mod=ComponentUtil.toModifier(id, Component.MODIFIER_NONE, Component.MODIFIER_NONE);
	if(mod==Component.MODIFIER_NONE) {
		data.srcCode.setPos(pos); 
	}
	
	comments(data);

	// do we have a starting component?
	if(
			!data.srcCode.isCurrent(getComponentName(data.srcCode.getDialect()))
			&& 
			(data.srcCode.getDialect()==CFMLEngine.DIALECT_CFML || !data.srcCode.isCurrent(Constants.CFML_COMPONENT_TAG_NAME))) {
		data.srcCode.setPos(pos);
		return null;
	}
	
	// parse the component
	TagLibTag tlt = CFMLTransformer.getTLT(data.srcCode,getComponentName(data.srcCode.getDialect()),
					data.config.getIdentification());
	TagComponent comp =(TagComponent) _multiAttrStatement(parent, data, tlt);
	if(mod!=Component.MODIFIER_NONE)comp.addAttribute(new Attribute(false,"modifier",data.factory.createLitString(id),"string"));
	return comp;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:34,代码来源:AbstrCFMLScriptTransformer.java

示例4: getModifier

@Override
public int getModifier() {
	return Component.MODIFIER_NONE;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:4,代码来源:UDFPropertiesLight.java


注:本文中的lucee.runtime.Component.MODIFIER_NONE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。