org.apache.tiles.Definition.getCascadedAttributeNames()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(138)

本文整理了Java中org.apache.tiles.Definition.getCascadedAttributeNames()方法的一些代码示例,展示了Definition.getCascadedAttributeNames()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Definition.getCascadedAttributeNames()方法的具体详情如下:
包路径:org.apache.tiles.Definition
类名称:Definition
方法名:getCascadedAttributeNames

Definition.getCascadedAttributeNames介绍

暂无

代码示例

代码示例来源:origin: org.springframework.webflow/spring-webflow

attributeNames.addAll(definition.getLocalAttributeNames());
if (definition.getCascadedAttributeNames() != null) {
  attributeNames.addAll(definition.getCascadedAttributeNames());

代码示例来源:origin: spring-projects/spring-webflow

attributeNames.addAll(definition.getLocalAttributeNames());
if (definition.getCascadedAttributeNames() != null) {
  attributeNames.addAll(definition.getCascadedAttributeNames());

代码示例来源:origin: org.springframework.webflow/spring-js

attributeNames.addAll(definition.getLocalAttributeNames());
if (definition.getCascadedAttributeNames() != null) {
  attributeNames.addAll(definition.getCascadedAttributeNames());

代码示例来源: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/tiles-core

attributeNames = d.getCascadedAttributeNames();
if (attributeNames != null && !attributeNames.isEmpty()) {
  for (String attributeName : attributeNames) {

相关文章