Tsikasa - 2012-07-06

I use alveole plugins for eclipse to develop my web. The text below is extracted in alveole-struts, which is generated by the plugin automatically.

<action class="com.alveole.helloworld.Action" method="hello" name="helloworld">
        <result name="success" type="dispatcher">
          /hello.jsp
          <param name="filePath">
            /myFile
          </param>
        </result>
      </action>

  The location of tag <param> is not correct. I think it should not be a child node of result. Correct xml file should look like this:

     <action class="com.alveole.helloworld.Action" method="hello" name="helloworld">
         <param name="filePath">
            /myFile
         </param>
        <result name="success" type="dispatcher">
          /hello.jsp
        </result>
      </action>

I am wondering whether I use the plugin right or I found a bug of alveole