I have the situation:
public interface AlarmBroadcasterRC {
abstract void DataIn(byte[] data);
abstract void DataOut(byte[] data);
abstract Boolean Drop(String id);
abstract Boolean Connected(String id, Boolean state);
}
public class GeneralActivity extends Activity implements View.OnClickListener, AlarmBroadcasterRC {
.....
}
But I get an error from compiler at the class declaration:
Does it mean that in Android Java an interface MUST implement first method or, if all its methods are abstract, then the class must be abstract also?
Sorry to extend the Q: I was following to one of the answers from here: