-
1. Re: [forge-users] Adding JavaDoc comments to a class generated using Roaster API
gastaldi Dec 27, 2014 9:27 PM (in response to neil.stevens)Hi,
You need to use javaClass.getJavaDoc().setFullText(...)for that matter.
Best Regards,
George Gastaldi
Em 27/12/2014, às 21:55, forge-users@lists.jboss.org escreveu:
Hi,
I'm using Java Roaster to generate quite a large number of java source files (from structured data in a text document). The API provides methods to retrieve Javadoc comments, but not to add them. I can not see any way to add Java Doc class level comments or method level comments. Does anyone know if there is any way to achieve this?
This is an example what I would like to do. I would like to add a line which achieves the same as the invalid final line in this code:
final JavaClassSource javaClass = Roaster.create(JavaClassSource.class);
javaClass.setPackage("com.company.example");
javaClass.setName("Person");
javaClass.setJavaDocText("This is designed to hold information about a person.");
Thanks in advance if any one can help me with this
Neil
Posted by forums
Original post: https://developer.jboss.org/message/914599#914599
_______________________________________________
forge-users mailing list
_______________________________________________
forge-users mailing list
https://lists.jboss.org/mailman/listinfo/forge-users
-
2. Re: Adding JavaDoc comments to a class generated using Roaster API
neil.stevens Dec 28, 2014 11:11 AM (in response to gastaldi)Thank you, I don't know how I missed that previously when I was looking through the methods.
Neil