-
Notifications
You must be signed in to change notification settings - Fork 1
NL and AGF handling #143
NL and AGF handling #143
Changes from 18 commits
daf740f
b199e53
06af78b
5230072
6cab908
d0abc7b
2fdfee9
ce401aa
165f63e
0640266
13aa395
6e86c39
a45915d
33a3d98
5828d9e
acf5352
b3d9aaf
973fa7b
f52964c
0a06c64
69a0737
e74d7e2
6dabd03
c009752
7c4c89f
e6feded
488b37f
3ae5085
7ae2d21
6c22393
bd9ad39
ec54c43
d1c22be
461416e
d0574b8
bc77808
5c490b4
fc83a92
e392e49
7582239
1e5967c
33e579a
fdfe562
2cf98f4
271e526
e5a81b5
3cc71b4
89f7168
5d49520
cccf1ae
d39adf0
ce70595
5f79286
e68830e
8a5e84e
c17cfd8
f832a67
e2565c8
457a87a
48b2852
b54ce76
80f621e
a6ec0c5
4749b78
df7c628
c2562d8
27e0a23
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
// TODO move the class in a package in the natlang package | ||
/** | ||
* The definition of a grammar annotation. | ||
* | ||
|
@@ -38,7 +39,9 @@ | |
@Target(java.lang.annotation.ElementType.METHOD) | ||
public @interface Grammar { | ||
/** | ||
* @return the grammar | ||
* TODO description | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Complete the task associated to this TODO comment. (squid:S1135) |
||
* | ||
* @return the grammar in AGF - Amy Grammar Format | ||
*/ | ||
String value(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,8 @@ | |
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
//TODO move the class in a package in the natlang package | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Complete the task associated to this TODO comment. (squid:S1135) |
||
//TODO rename the annotation | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Complete the task associated to this TODO comment. (squid:S1135) |
||
/** | ||
* The definition of a speech command annotation | ||
* | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
* | ||
* @author Felix Burk | ||
*/ | ||
@Deprecated | ||
public class PluginGrammarInfo { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Do not forget to remove this deprecated code someday. (squid:S1133) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Add the missing @deprecated Javadoc tag. (squid:MissingDeprecatedCheck) |
||
|
||
List<String> keywords; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ | |
* | ||
* @author Felix Burk | ||
*/ | ||
@Deprecated | ||
public class TextToPlugin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Do not forget to remove this deprecated code someday. (squid:S1133) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Smell: Add the missing @deprecated Javadoc tag. (squid:MissingDeprecatedCheck) |
||
|
||
Set<PluginGrammarInfo> infos; | ||
|
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.
Code Smell: Complete the task associated to this TODO comment. (squid:S1135)
See it in SonarCloud