Posted By:
Anonymous
Posted On:
Monday, March 11, 2002 09:27 AM
When I compile my project with javac, there are no errors.
When I compile it with JBuilder 6.0, I have errors with nested classes.
Example :
class TitleListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
}
};
ActionListener al = new TitleListener();
> Error : on the last line : class TitleListener not found
Any Idea ?