I am trying different combination of inner classes.I wonder that java gives you facility to write interface inside interface.It does not give me any compile time error. Can anybody tell me what is the use of this ?
public interface IA {
public interface IB{
}
}