The platform's Java code editor fails to parse correctly the word 'class' in a comment header:
// My class FakeName
package jforex;
import com.dukascopy.api.*;
public class StrategyName implements IStrategy {
public void onStart(IContext context) throws JFException {}
public void onAccount(IAccount account) throws JFException {}
public void onMessage(IMessage message) throws JFException {}
public void onStop() throws JFException {}
public void onTick(Instrument instrument, ITick tick) throws JFException {}
public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException {}
}
The platform suggests 'FakeName package' file name to save and underlines with red 'StrategyName' class name.