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


Java Component.ACCESS_PUBLIC属性代码示例

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


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

示例1: BIF

public BIF(PageContext pc,String name) throws ApplicationException{
	super(Component.ACCESS_PUBLIC);
	ci=(ConfigImpl) pc.getConfig();
	FunctionLib fl = ci.getCombinedFLDs(pc.getCurrentTemplateDialect());
	flf = fl.getFunction(name);
	
	// BIF not found
	if(flf==null) {
		Key[] keys = CollectionUtil.toKeys(fl.getFunctions().keySet());
		throw new ApplicationException(ExceptionUtil.similarKeyMessage(keys, name, "build in function", "build in functions",null, false));
	}
	try {
		this.id=Hash.md5(name);
	}
	catch (NoSuchAlgorithmException e) {
		this.id=name;
	}
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:18,代码来源:BIF.java

示例2: init

@Override
public void init(Map arguments){
	forceCFCLower=Caster.toBooleanValue(arguments.get("force-cfc-lowercase"),false);
	forceQueryLower=Caster.toBooleanValue(arguments.get("force-query-lowercase"),false);
	forceStructLower=Caster.toBooleanValue(arguments.get("force-struct-lowercase"),false);
	// method access level
	String str=Caster.toString(arguments.get("method-access-level"),"remote");
	if("private".equalsIgnoreCase(str))methodAccessLevel=Component.ACCESS_PRIVATE;
	else if("package".equalsIgnoreCase(str))methodAccessLevel=Component.ACCESS_PACKAGE;
	else if("public".equalsIgnoreCase(str))methodAccessLevel=Component.ACCESS_PUBLIC;
	else methodAccessLevel=Component.ACCESS_REMOTE;
	
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:13,代码来源:ClassicAMFCaster.java

示例3: UDFGSProperty

public UDFGSProperty(ComponentImpl component,String name,FunctionArgument[] arguments,short rtnType,String rtnFormat) {
	super(Component.ACCESS_PUBLIC);
	properties=new UDFPropertiesImpl(
			component.getPageSource(),
			arguments,
			-1,
			name,
			rtnType,
			rtnFormat,
			false,
			Component.ACCESS_PUBLIC,
			true,
			"",
			"",
			"",
			Boolean.FALSE,
			Boolean.FALSE,
			null,
			null,
			null
			
	);
			
	this.name=name;
	this.arguments=arguments;
	this.component=component;
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:27,代码来源:UDFGSProperty.java

示例4: BIF

public BIF(Config config,String name) throws ApplicationException{
	super(Component.ACCESS_PUBLIC);
	ci=(ConfigImpl) config;
	FunctionLib fl = ci.getCombinedFLDs();
	flf = fl.getFunction(name);
	
	// BIF not fuound
	if(flf==null) {
		Key[] keys = CollectionUtil.toKeys(fl.getFunctions().keySet());
		throw new ApplicationException(ExceptionUtil.similarKeyMessage(keys, name, "build in function", "build in functions", false));
	}
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:12,代码来源:BIF.java

示例5: toIntAccess

/**
    * cast a strong access definition to the int type
    * @param access access type
    * @return int access type
    * @throws ExpressionException
    */
public static int toIntAccess(String access) throws ExpressionException {
       access=StringUtil.toLowerCase(access.trim());
       if(access.equals("package"))return Component.ACCESS_PACKAGE;
       else if(access.equals("private"))return Component.ACCESS_PRIVATE;
       else if(access.equals("public"))return Component.ACCESS_PUBLIC;
       else if(access.equals("remote"))return Component.ACCESS_REMOTE;
       throw new ExpressionException("invalid access type ["+access+"], access types are remote, public, package, private");
       
   }
 
开发者ID:lucee,项目名称:Lucee4,代码行数:15,代码来源:ComponentUtil.java

示例6: toStringAccess

public static String toStringAccess(int access,String defaultValue)  {
    switch(access) {
        case Component.ACCESS_PACKAGE:      return "package";
        case Component.ACCESS_PRIVATE:      return "private";
        case Component.ACCESS_PUBLIC:       return "public";
        case Component.ACCESS_REMOTE:       return "remote";
    }
    return defaultValue;
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:9,代码来源:ComponentUtil.java

示例7: UDFGSProperty

public UDFGSProperty(Component component,String name,FunctionArgument[] arguments,short rtnType) {
	super(Component.ACCESS_PUBLIC);
	properties=UDFProperties(null,
			component.getPageSource(),
			arguments,
			name,
			rtnType
	);
	
	this.name=name;
	this.arguments=arguments;
	this.component=component;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:13,代码来源:UDFGSProperty.java

示例8: toIntAccess

/**
    * cast a strong access definition to the int type
    * @param access access type
    * @return int access type
    * @throws ExpressionException
    */
public static int toIntAccess(String access) throws ApplicationException {
       access=StringUtil.toLowerCase(access.trim());
       if(access.equals("package"))return Component.ACCESS_PACKAGE;
       else if(access.equals("private"))return Component.ACCESS_PRIVATE;
       else if(access.equals("public"))return Component.ACCESS_PUBLIC;
       else if(access.equals("remote"))return Component.ACCESS_REMOTE;
       throw new ApplicationException("invalid access type ["+access+"], access types are remote, public, package, private");
       
   }
 
开发者ID:lucee,项目名称:Lucee,代码行数:15,代码来源:ComponentUtil.java

示例9: getAccess

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


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