javax.faces.view.facelets.Tag.toString()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(91)

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

Tag.toString介绍

[英]Get the string representation.
[中]获取字符串表示。

代码示例

代码示例来源:origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 */
public TagException(Tag tag) {
  super(tag.toString());
}

代码示例来源:origin: org.apache.myfaces.core/myfaces-api

/**
 * 
 */
public TagException(Tag tag)
{
  super(tag.toString());
}

代码示例来源:origin: javax/javaee-web-api

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 * @param cause the root cause for this exception.
 */
public TagException(Tag tag, Throwable cause) {
  super(tag.toString(), cause);
}

代码示例来源:origin: org.glassfish/javax.faces

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 */
public TagException(Tag tag) {
  super(tag.toString());
}

代码示例来源:origin: com.sun.faces/jsf-api

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 */
public TagException(Tag tag) {
  super(tag.toString());
}

代码示例来源:origin: org.glassfish/jakarta.faces

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 */
public TagException(Tag tag) {
  super(tag.toString());
}

代码示例来源:origin: org.apache.myfaces.core/myfaces-api

/**
 * @param cause
 */
public TagException(Tag tag, Throwable cause)
{
  super(tag.toString(), cause);
}

代码示例来源:origin: com.sun.faces/jsf-api

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 * @param cause the root cause for this exception.
 */
public TagException(Tag tag, Throwable cause) {
  super(tag.toString(), cause);
}

代码示例来源:origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 */
public TagException(Tag tag) {
  super(tag.toString());
}

代码示例来源:origin: javax/javaee-web-api

public String toString() {
    return this.tag.toString();
  }
}

代码示例来源:origin: org.apache.myfaces.core/myfaces-api

/**
   * {@inheritDoc}
   */
  @Override
  public String toString()
  {
    return this.tag.toString();
  }
}

代码示例来源:origin: javax.faces/javax.faces-api

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 * @param cause the root cause for this exception.
 */
public TagException(Tag tag, Throwable cause) {
  super(tag.toString(), cause);
}

代码示例来源:origin: org.apache.myfaces.core/myfaces-impl

public String toString()
{
  return this.tag.toString();
}

代码示例来源:origin: org.glassfish/javax.faces

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 * @param cause the root cause for this exception.
 */
public TagException(Tag tag, Throwable cause) {
  super(tag.toString(), cause);
}

代码示例来源:origin: javax.faces/javax.faces-api

public String toString() {
    return this.tag.toString();
  }
}

代码示例来源:origin: org.glassfish/javax.faces

public String toString() {
    return this.tag.toString();
  }
}

代码示例来源:origin: javax.faces/javax.faces-api

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 */
public TagException(Tag tag) {
  super(tag.toString());
}

代码示例来源:origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 * @param cause the root cause for this exception.
 */
public TagException(Tag tag, Throwable cause) {
  super(tag.toString(), cause);
}

代码示例来源:origin: org.glassfish/jakarta.faces

/**
 * <p class="changed_added_2_0">Wrap the argument <code>tag</code>
 * so the exception can reference its information.</p>
 * @param tag the <code>Tag</code> that caused this exception.
 * @param cause the root cause for this exception.
 */
public TagException(Tag tag, Throwable cause) {
  super(tag.toString(), cause);
}

代码示例来源:origin: stackoverflow.com

private class TagSerializer implements JsonSerializer<Tag>
{
 public JsonElement serialize(Tag src, Type typeOfSrc, JsonSerializationContext context)
 {
  return new JsonPrimitive(src.toString());
 }
}

相关文章