本文整理汇总了Java中org.apache.jasper.compiler.TldLocation类的典型用法代码示例。如果您正苦于以下问题:Java TldLocation类的具体用法?Java TldLocation怎么用?Java TldLocation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TldLocation类属于org.apache.jasper.compiler包,在下文中一共展示了TldLocation类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getTldLocation
点赞 1
import org.apache.jasper.compiler.TldLocation; //导入依赖的package包/类
/**
* Gets the 'location' of the TLD associated with the given taglib 'uri'.
*
* @return An array of two Strings: The first element denotes the real
* path to the TLD. If the path to the TLD points to a jar file, then the
* second element denotes the name of the TLD entry in the jar file.
* Returns null if the given uri is not associated with any tag library
* 'exposed' in the web application.
*/
public TldLocation getTldLocation(String uri) throws JasperException {
TldLocation location =
getOptions().getTldLocationsCache().getLocation(uri);
return location;
}
开发者ID:liaokailin,
项目名称:tomcat7,
代码行数:15,
代码来源:JspCompilationContext.java
示例2: getTldLocation
点赞 1
import org.apache.jasper.compiler.TldLocation; //导入依赖的package包/类
/**
* Gets the 'location' of the TLD associated with the given taglib 'uri'.
*
* @return An array of two Strings: The first element denotes the real path
* to the TLD. If the path to the TLD points to a jar file, then the
* second element denotes the name of the TLD entry in the jar file.
* Returns null if the given uri is not associated with any tag
* library 'exposed' in the web application.
*/
public TldLocation getTldLocation(String uri) throws JasperException {
TldLocation location = getOptions().getTldLocationsCache().getLocation(uri);
return location;
}
开发者ID:how2j,
项目名称:lazycat,
代码行数:14,
代码来源:JspCompilationContext.java
示例3: getTldLocation
点赞 1
import org.apache.jasper.compiler.TldLocation; //导入依赖的package包/类
/**
* Gets the 'location' of the TLD associated with the given taglib 'uri'.
*
* @return An array of two Strings: The first element denotes the real
* path to the TLD. If the path to the TLD points to a jar file, then the
* second element denotes the name of the TLD entry in the jar file.
* Returns null if the given uri is not associated with any tag library
* 'exposed' in the web application.
*/
public TldLocation getTldLocation(String uri) throws JasperException {
TldLocation location =
getOptions().getTldLocationsCache().getLocation(uri);
return location;
}
开发者ID:WhiteBearSolutions,
项目名称:WBSAirback,
代码行数:15,
代码来源:JspCompilationContext.java