hi all,
        i am playing around and try to write my custom subtask and
i have the following problem:

here is the code that i need to fetch

    * @jmx.managed-operation
    *    name="artificialOperation"
    *    description="artificial operation not implemented in class"
    *    return-type="java.lang.String"
    *    interceptor-classes="org.jboss.TestMBeanInterceptor"
    * @jmx.managed-parameter
    *    managed-operation="artificialOperation"
    *    name="firstParam"
    *    type="java.lang.Integer"
    * @jmx.managed-parameter
    *    managed-operation="artificialOperation"
    *    name="secondParam"
    *    type="java.lang.String"
    *

now, i am parsing all class tags with the name jmx-managed operation.
inside the same loop i am also parsing all the tags named 'jmx.managed-parameter'
that has as value of the parameter 'managed-operation' the current 
jmx.managed-operation

i am using following code (taken from sources)

<XDtClass:forAllClassTags tagName="jmx.managed-operation">
  <XDtClass:ifClassTagValueMatches tagName="jmx.managed-parameter" 
paramName="managed-operation" >
    HELLO WE GOT IT!
  </XDtClass:ifClassTagValueMatches>
</XDtClass:forAllClassTags>

but it seems not working...... 

is the code wrong?

i am using xdoclet1.2b3

regards
        marco




-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to