本文整理了Java中javax.faces.view.facelets.Tag.toString()
方法的一些代码示例,展示了Tag.toString()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Tag.toString()
方法的具体详情如下:
包路径:javax.faces.view.facelets.Tag
类名称: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());
}
}
内容来源于网络,如有侵权,请联系作者删除!