Hi,
I know the getDetails() method, finally I found what I was searching. Here's :
public void onMessage(IMessage message) throws JFException
{
if(message.getType() == IMessage.Type.CALENDAR)
{
ICalendarMessage c = (ICalendarMessage)message;
List<ICalendarMessage.Detail> d = c.getDetails();
for(int n = 0; n < d.size(); n++)
{
console.getOut().print(d.get(n).getDescription() + "\n");
}
}
}
I don't understand your response about the IClient interface, for example I would like to access to the method "void com.dukascopy.api.system.IClient.addNewsFilter(INewsFilter newsFilter)" but inside the strategy itself, is it possible ? The idea is to suscribe programmatically to the news.
Thanks,
Philippe