Hi,

I have the code below.How do I implement in the main.

//// The code /////

interface B{
void SetColor();
}

abstract class C implements B{
int j =2;
int Set(int j){
System.out.println("abstract1");
return j;
}

}


class A extends C {
public static void main(String[] arg){
A a = new A();
a.Set(3);
a.SetColor(){
System.out.println("abstract2");
}
}
}

I am unable to implement the method from the interface.

Thanks,
Deepa