-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: use JavaDoc as comments #2481
Conversation
This is a very basic PoC implementation that can serve as a base for further work. fixes: 2417
b33fcd8
to
2ef070e
Compare
@@ -82,9 +82,11 @@ public class ModuleBuilder { | |||
private final Map<DotName, TopicsBuildItem.DiscoveredTopic> knownTopics; | |||
private final Map<DotName, VerbClientBuildItem.DiscoveredClients> verbClients; | |||
private final FTLRecorder recorder; | |||
private final Map<String, String> verbDocs; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to make sure you know, most declarations in the FTL schema can include comments - data structures, enums, etc.
/** | ||
* POC annotation processor for capturing JavaDoc, this needs a lot more work. | ||
*/ | ||
public class AnnotationProcessor implements Processor { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this run as part of the module JVM instance, or as part of the build?
This is awesome. |
This is a very basic PoC implementation that can serve as a base for further work.