I am learning android and came across an example like
public static class A extends IntentService {
public A() {
super("AppWidget$A");
}
}
Can someone please tell me why do we have to call constructor of the superclass(IntentService) explicitly? and what does the parameter string signify?
It is used only for debugging. Here is a part of IntentService source code that uses this: