Examples of doEndTag()


Examples of com.liferay.faces.bridge.taglib.liferay.HtmlTopTag.doEndTag()

        htmlTopTag.doStartTag();
        bodyContent.print(elementAsString);
        htmlTopTag.setBodyContent(bodyContent);

        try {
          htmlTopTag.doEndTag();
        }
        catch (Exception e) {
          throw new IOException(e.getMessage());
        }
View Full Code Here

Examples of com.liferay.taglib.security.PermissionsURLTag.doEndTag()

      // Set var to null if you want the tag to write out the url
      permissionsURLTag.setVar(null);

      try {
        permissionsURLTag.doStartTag();
        permissionsURLTag.doEndTag();
        permissionsUrl = stringJspWriter.toString();
      }
      catch (Exception e) {
        logger.error(e);
      }
View Full Code Here

Examples of javax.faces.webapp.FacetTag.doEndTag()

    gridLayoutTag.setRows(rows);
    gridLayoutTag.setParent(facetTag);
    gridLayoutTag.doStartTag();
    gridLayoutTag.doEndTag();

    facetTag.doEndTag();

    LabelTag labelTag = new LabelTag();
    labelTag.setPageContext(pageContext);
    if (value != null) {
      labelTag.setValue(value);
View Full Code Here

Examples of javax.faces.webapp.FacetTag.doEndTag()

    gridLayoutTag.setRows(rows);
    gridLayoutTag.setParent(facetTag);
    gridLayoutTag.doStartTag();
    gridLayoutTag.doEndTag();

    facetTag.doEndTag();

    LabelTag labelTag = new LabelTag();
    labelTag.setPageContext(pageContext);
    if (value != null) {
      labelTag.setValue(value);
View Full Code Here

Examples of org.apache.beehive.netui.tags.rendering.ScriptTag.doEndTag()

                }
            }
        }

        appender.append(ScriptRequestState.getString("popupReturn_end", new Object[]{_callbackFunc}));
        br.doEndTag(appender, false);
    }
}
View Full Code Here

Examples of org.apache.beehive.netui.tags.rendering.TagRenderingBase.doEndTag()

            reportErrors();
            return;
        }

        // finish the tree representation and write it
        divRenderer.doEndTag(writer);
        sb.append("\n");
        write(sb.toString());

        if (!(treeRoot instanceof ITreeRootElement)) {
            boolean error = false;
View Full Code Here

Examples of org.apache.cocoon.taglib.Tag.doEndTag()

                    finally {
                        if (xmlDeserializer != null)
                            manager.release(xmlDeserializer);
                    }
                }
                tag.doEndTag(namespaceURI, localName, qName);
                currentTag = tag.getParent();

                if (tag == currentConsumer) {
                    // search next XMLConsumer
                    Tag loop = currentTag;
View Full Code Here

Examples of org.apache.myfaces.tobago.internal.taglib.AttributeTag.doEndTag()

      step.setPageContext(pageContext);
      step.setParent(button);
//todo      step.setName("step");
//todo      step.setValue("" + info.getIndex());
      step.doStartTag();
      step.doEndTag();

      button.doEndTag();
    }
    OutTag spacer = new OutTag();
    spacer.setPageContext(pageContext);
View Full Code Here

Examples of org.apache.myfaces.tobago.internal.taglib.ButtonTag.doEndTag()

    button.setParent(getParent());
    button.setLabel(label == null ? createStringValueExpression("Previous") : label); // todo: i18n
//todo    button.setAction("#{" + wizard + ".previous}");
//todo    button.setDisabled("#{!" + wizard + ".previousAvailable}");
    button.doStartTag();
    button.doEndTag();

    return result;
  }

  protected ValueExpression createStringValueExpression(String expression) {
View Full Code Here

Examples of org.apache.myfaces.tobago.internal.taglib.DatePickerTag.doEndTag()

    if (pickerId != null) {
      datePicker.setId(pickerId);
    }
    datePicker.setJspId(jspId + PREFIX + idSuffix++);
    datePicker.doStartTag();
    datePicker.doEndTag();
    formTag.doEndTag();

    labelTag.doEndTag();
    return super.doEndTag();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.