org.apache.geronimo.console.web.taglib
public final class: MBeanAttributesTag [javadoc |
source]
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.tagext.BodyTagSupport
org.apache.geronimo.console.web.taglib.MBeanServerContextSupport
org.apache.geronimo.console.web.taglib.MBeanAttributesTag
All Implemented Interfaces:
BodyTag, IterationTag, Serializable
This tag will display the contents of an MBean in a simple table of
name/value pairs. The style of the table can be controlled with CSS.
| Method from org.apache.geronimo.console.web.taglib.MBeanAttributesTag Summary: |
|---|
|
doEndTag, doStartTag |
| Methods from javax.servlet.jsp.tagext.TagSupport: |
|---|
|
class$, doAfterBody, doEndTag, doStartTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.console.web.taglib.MBeanAttributesTag Detail: |
public int doEndTag() {
return EVAL_PAGE;
}
|
public int doStartTag() {
ctx = getMBeanServerContext();
server = ctx.getMBeanServer();
JspWriter out = pageContext.getOut();
printMBeanProperties(out);
printMBeanAttributes(out);
return EVAL_BODY_INCLUDE;
}
|