Package analyzer.comments
Class FeedbackRequest
java.lang.Object
analyzer.Comment
analyzer.comments.FeedbackRequest
This comment requests students to leave feedback on the analyzer comments.
Use it whenever new comments or analyzers are implemented, as a way to "beta-test" the new functionality.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class analyzer.Comment
Comment.Type
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
FeedbackRequest
public FeedbackRequest()
-
-
Method Details
-
getKey
Description copied from class:Comment
The comment key is aString
that uniquely identifies the comment.Comment keys use the format
"java.<scope>.<name>"
. The<scope>
can be eithergeneral
for general comments, or the slug of the exercise for exercise-specific comments. The<name>
specifies the name of the comment.The combination of
<scope>
and<name>
must be unique, and defines the location of the Markdown template in the exercism/website-copy repository.For example, the comment key
"java.hello-world.foo_bar"
would translate to the Markdown file atanalyzer-comments/java/hello-world/foo_bar.md
.
-