Is there some special syntax for the @Library notation?
package jforex;
import java.util.*;
import com.dukascopy.api.*;
@Library("Minimal.jar");
public class saveStrategy implements IStrategy {
private IEngine engine;
private IConsole console;
etc
I'm seeing
Syntax error, insert "EnumBody" to complete EnumDeclaration
^
@Library("Mimimal.jar");
2. ERROR in /tmp/jfxide/tmp/saveStrategy.java (at line 7)
----------
Syntax error, insert "enum Identifier" to complete EnumHeaderName
^
@Library("Minimal.jar");
1. ERROR in /tmp/jfxide/tmp/saveStrategy.java (at line 7)
----------
Compiling...
needless to say, Minimal.jar really is Minimal
public class Minimal {
}
similar errors from more consequential libs, it's definitely in ~/My Strategies/files, similar errors when specifying a full path; no "file not found" error as could happen when the path is incorrect
thanks in advance for your assistance
Mark