I'm trying to use a Gephi ToolKit Demo, it's a simple demo project that show how to use Gephi. It's a Maven project.
I get compilation error (@Overide annotation
) in the all the classes of the org.gephi.toolkit.demos.plugins.preview
package,
Eclipse propose to remove the @Overide
annotation, but if I remove them I get nothing in result.
More details:
I'm trying to implement a listener mouse Interface in Gephi PreviewMouseListener
, so I need to get mouse events notify when the user uses the mouse (click on graph nodes). So by implementing the PreviewMouseListener
methods the @Overide annotation appear before the methods implementation, but Eclipse show compilation error.
I already checked the compiler compliance level in Eclipse (I found 1.7) as mentionned in this topics:
I tried to execute the same project using Maven
command line in Windows and it compile and works good, and it doesn't show me any of those annotation errors.
If you need to see a quicly example just launch the PreviewJFrame.java
class.
Any one have any idea how to resolve this problem.