Comment #3 on issue 1407 by [email protected]: libdoc to support multiple
library/resource files as input
http://code.google.com/p/robotframework/issues/detail?id=1407
I tried generating documentation for java library and it does not work as
intended
here is scenario
public abstract class x {
public abstract void doSomethingabstract(String msg);
public void logMessage(String msg){
//some implementation
}
}
public class y extends x{
/** javadoc goes here
*
*
*/
@Override
public void doSomethingabstract(String msg){
//some implementation
}
}
when we create libdoc for class y documentation is created for only method
doSomethingabstract and documentation for logMessage is not available this
case is true only when i generate java doc by providing absolute path to
y.java file
java -jar org.robotframework.RobotFramework libdoc y.java
when I invoke
java -jar org.robotframework.RobotFramework libdoc something.y I get libdoc
for both the keywords however arguments info and documentation is lost
I think combinig both diff libdoc would be nice addition
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
---
You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.