......................
This is yours
.....................
@ShortName("DJIWaypoint")
public void AddAction(WaypointActionType Action, int Parameter) {
if (getObject().addAction(new WaypointAction(Action, Parameter)) == false)
throw new RuntimeException("Cannot add action");
}
.................
This is mine
................
i try to implement myself but I do not see the element (getObject()) ...i do not know if this would be fine... without the (getObject())
public void shootPhotoTimeInterval(int i) {
xxxx. shootPhotoTimeInterval(i); ////////////if I put it (getObject()) in eclipse it gives me an error
}
.....