Title: Message
There is a bug in the interface wizard - it insert $ when the interface to be implemented
uses inner classes.
 
Example:
My interface -
import path.Class;
 
public interface MyInterface {
 void myMethod(Class.innerClass)
}

will result in

import path.Class$innerClass;

MyInterfaceImpl implement MyInterface {

public void(Class$innerClass class$innerClass) {

}

 

Henrik Kj�r

Reply via email to