hi,
i want to write a class that extends from a subclass of another class,something like this:
public class A{
//some codes here
public class B{
//some codes here
}
}
public class C extends A.B ( or public class C extends B ){
//some codes here
}
can anyone help me with that?!