summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/gluegen/jgram/JavaParser.g
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/jogamp/gluegen/jgram/JavaParser.g')
-rw-r--r--src/java/com/jogamp/gluegen/jgram/JavaParser.g8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/java/com/jogamp/gluegen/jgram/JavaParser.g b/src/java/com/jogamp/gluegen/jgram/JavaParser.g
index 18f2970..f67579e 100644
--- a/src/java/com/jogamp/gluegen/jgram/JavaParser.g
+++ b/src/java/com/jogamp/gluegen/jgram/JavaParser.g
@@ -155,7 +155,7 @@ tokens {
}
/** Returns the EnumTypes this HeaderParser processed. */
- public Set getParsedEnumNames() {
+ public Set<String> getParsedEnumNames() {
return enumNames;
}
@@ -167,13 +167,13 @@ tokens {
}
/** Returns the list of FunctionSymbols this HeaderParser has parsed. */
- public Set getParsedFunctionNames() {
+ public Set<String> getParsedFunctionNames() {
return functionNames;
}
- private Set/*<String>*/ functionNames = new HashSet();
+ private Set<String> functionNames = new HashSet<String>();
// hash from name of an enumerated value to the EnumType to which it belongs
- private Set/*<String>*/ enumNames = new HashSet();
+ private Set<String> enumNames = new HashSet<String>();
private int blockDepth = 0;
}