Hi everyone!!!
I am newbie in java programming, I am using a communication API. I am havin some problems. Iwant to use a method defined like this:
enableRecording
public abstract void enableRecording(DeviceID device,
Boolean immediatelyActive)
throws CstaException
and for that I am doing the following:
recordingActivation = new Boolean(true);
enableRecording(id, recordingActivation);
I get this error:
../src/sampleapps/tutorial/PrimerApp.java:226: cannot resolve symbol
symbol : method enableRecording (ch.ecma.csta.binding.DeviceID,java.lang.Boolean)
location: class PrimerApp
enableRecording(id, recordingActivation);
^
1 error
Can anybody help with this??? I've tried lot of things but I really don't know what else to try :(