jankrause / idocit

Automatically exported from code.google.com/p/idocit
0 stars 0 forks source link

Action-Text is not put to the top of the generated simplified javadoc #129

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a new Java-Interface "TestInterface" with the following content:
public interface TestInterface {

    public String getString();

}
2. Open the interface with iDocIt! and select the operation.
3. Select "Getter / Getting Operation" as reference grid.
4. Add a new docpart with the role SOURCE and the text "The Source"
5. Add another docpart with the role "ACTION" and the text "The Action".
6. Save the changed interface.

What is the expected output? 
/**
 * The Action
 *
 * @source The Source<br/>
 * 
 * @return String
 * @thematicgrid Getting Operations / Getter
 */
public String getString();

What do you see instead?
/**
 * @source The Source<br/>
 * The Action
 * 
 * @return String
 * @thematicgrid Getting Operations / Getter
 */
public String getString();

Please use labels and text to provide additional information.

Original issue reported on code.google.com by krauseda...@web.de on 31 Oct 2012 at 7:55

GoogleCodeExporter commented 8 years ago

Original comment by dirk.mei...@gmail.com on 31 Oct 2012 at 3:22

GoogleCodeExporter commented 8 years ago
The same issue happens if the method has "@thematicgrid Checking Operations" 
and I add first SOURCE and then RULE. Then the the documentation of SOURCE 
comes before RULE's documentation.

Original comment by dirk.mei...@gmail.com on 1 Nov 2012 at 1:36

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r957.

Original comment by dirk.mei...@gmail.com on 1 Nov 2012 at 2:58