本文整理了Java中org.apache.tiles.Definition.getLocalAttributeNames()
方法的一些代码示例,展示了Definition.getLocalAttributeNames()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Definition.getLocalAttributeNames()
方法的具体详情如下:
包路径:org.apache.tiles.Definition
类名称:Definition
方法名:getLocalAttributeNames
暂无
代码示例来源:origin: org.springframework.webflow/spring-webflow
if (definition.getLocalAttributeNames() != null) {
attributeNames.addAll(definition.getLocalAttributeNames());
代码示例来源:origin: org.springframework.webflow/spring-js
if (definition.getLocalAttributeNames() != null) {
attributeNames.addAll(definition.getLocalAttributeNames());
代码示例来源:origin: spring-projects/spring-webflow
if (definition.getLocalAttributeNames() != null) {
attributeNames.addAll(definition.getLocalAttributeNames());
代码示例来源:origin: org.apache.tiles/com.springsource.org.apache.tiles.core
/**
* Validates a custom definition.
*
* @param definition The definition to validate.
*/
private void validate(Definition definition) {
Set<String> names = definition.getLocalAttributeNames();
if (names != null) {
for (String name : names) {
Attribute attribute = definition.getLocalAttribute(name);
if (attribute.getValue() == null) {
throw new IllegalArgumentException(
"Attribute '" + name + "' value not defined");
}
}
}
names = definition.getCascadedAttributeNames();
if (names != null) {
for (String name : names) {
Attribute attribute = definition.getCascadedAttribute(name);
if (attribute.getValue() == null) {
throw new IllegalArgumentException(
"Attribute '" + name + "' value not defined");
}
}
}
}
代码示例来源:origin: org.apache.tiles/com.springsource.org.apache.tiles.core
/**
* Creates a definition given its representation with wildcards.
*
* @param d The definition to replace.
* @param name The name of the definition to be created.
* @param vars The variables to be substituted.
* @return The definition that can be rendered.
* @since 2.1.0
*/
protected Definition replaceDefinition(Definition d, String name,
Map<Integer, String> vars) {
Definition nudef = new Definition();
nudef.setExtends(replace(d.getExtends(), vars));
nudef.setName(name);
nudef.setPreparer(replace(d.getPreparer(), vars));
nudef.setTemplateAttribute(replaceVarsInAttribute(d
.getTemplateAttribute(), vars));
Set<String> localAttributeNames = d.getLocalAttributeNames();
if (localAttributeNames != null && !localAttributeNames.isEmpty()) {
for (String attributeName : localAttributeNames) {
Attribute attr = d.getLocalAttribute(attributeName);
Attribute nuattr = replaceVarsInAttribute(attr, vars);
nudef.putAttribute(replace(attributeName, vars), nuattr);
}
}
return nudef;
}
代码示例来源:origin: org.apache.tiles/tiles-core
Set<String> attributeNames = d.getLocalAttributeNames();
if (attributeNames != null && !attributeNames.isEmpty()) {
for (String attributeName : attributeNames) {
内容来源于网络,如有侵权,请联系作者删除!