In an android app test suite I have a class like this where B is a view:
public class A extends B {
... etc...
}
now I have a list of view objects which may contain A objects but in this case …
Im overriding an equals() method and I need to know if the object is an instance of a Event's subclass (Event is the superclass). I want something like "obj subclassof Event". How can this be made?
Thanks in advance!
I know that a class can implement more than one interface, but is it possible to extend more than one class? For example I want my class to extend both TransformGroup and a class I created. Is this possible in …