posted 18 years ago
Hi raja,
you can decalre a class inside the class in which you declared interface. Then you can write its definition as
for example class A implements interface_name
{
}
like this you can write.
And
intefaces defined inside class are static and public by default. So you can access the interface by using the class name , in which you defined , and you can make use of it.