i want to abstract my abstract class to other class e.g..
abstract class Human
{
String sound;
abstract void makeSoud();
}
abstract class Europian extends Human
{
abstract void makeTone();
}
class Spanish extends Europian
{
void makeTone()
{
System.out.println("Voukhu");
}
}
is this is possible or not!i can;t do that!pliz