示例#1
0
  /**
   * Override attributes set on this tag instance.
   *
   * @param component Component whose attributes should be overridden
   */
  protected void overrideProperties(UIComponent component) {

    super.overrideProperties(component);
    if ((path != null) && (component.getAttribute("path") == null)) {
      component.setAttribute("path", path);
    }
  }