1
Suggestions and Requests / Java enums with implements
« on: June 21, 2005, 10:37:23 am »
I got this error when attempting to reverse engineer some Java 5.0 code in EA:
Here is the offending code:
The implements keyword is legal for enums, so I assume this is a problem with the parser grammer.
Code: [Select]
There was an error parsing C:\test\Test.java on line 3.
Unexpected Symbol: implements
Would you like to continue the import?
Here is the offending code:
Code: [Select]
package test;
public enum Test implements Something {
...
The implements keyword is legal for enums, so I assume this is a problem with the parser grammer.