Update of /cvsroot/ejtools/applications/jmx.browser/src/webapp/content
In directory usw-pr-cvs1:/tmp/cvs-serv29194/webapp/content
Modified Files:
detail.jsp
Log Message:
Add new taglib to display MBean attribute and parameters
Index: detail.jsp
===================================================================
RCS file: /cvsroot/ejtools/applications/jmx.browser/src/webapp/content/detail.jsp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** detail.jsp 24 Apr 2002 20:01:13 -0000 1.1
--- detail.jsp 25 Apr 2002 20:25:36 -0000 1.2
***************
*** 138,142 ****
<bean:write name="parameter" property="name"/>
<jsp:text></a> (</jsp:text>
! <bean:write name="parameter" property="type"/>
<jsp:text>)</jsp:text>
<br/>
--- 138,142 ----
<bean:write name="parameter" property="name"/>
<jsp:text></a> (</jsp:text>
! <app:mbeanParameterClass name="parameter"/>
<jsp:text>)</jsp:text>
<br/>
***************
*** 240,244 ****
<logic:iterate name="detail.info" property="attributes" id="attribute" type="javax.management.MBeanAttributeInfo">
<tr bgcolor="#EEEEEE">
! <td valign="top" align="right">
<jsp:text><a href="javascript:alert('</jsp:text>
<bean:write name="attribute" property="description"/>
--- 240,244 ----
<logic:iterate name="detail.info" property="attributes" id="attribute" type="javax.management.MBeanAttributeInfo">
<tr bgcolor="#EEEEEE">
! <td valign="top" align="left">
<jsp:text><a href="javascript:alert('</jsp:text>
<bean:write name="attribute" property="description"/>
***************
*** 248,260 ****
</td>
<td class="attributeValue" valign="top" align="left">
! <bean:write name="attribute" property="type"/>
</td>
! <td class="attributeValue" valign="top" align="left">
! <bean:write name="attribute" property="is"/>
! <bean:write name="attribute" property="readable"/>
! <bean:write name="attribute" property="writable"/>
</td>
<td class="attributeValue" valign="top" align="left">
! <bean:write name="attribute"/>
</td>
</tr>
--- 248,258 ----
</td>
<td class="attributeValue" valign="top" align="left">
! <app:mbeanAttributeClass name="attribute"/>
</td>
! <td class="attributeValue" valign="top" align="center">
! <app:mbeanAttributeAccess name="attribute"/>
</td>
<td class="attributeValue" valign="top" align="left">
! <app:mbeanAttributeEditor name="detail" property="attribute"/>
</td>
</tr>
|