Hello all,
I'm very new to Java programming. I tried to compile 'webcrawler.java'. It gives me one error from this particular line( in bold), -->
public class webcrawler extends Applet implements ActionListener, Runnable {
public static final String SEARCH = "Search";
public static final String STOP = "Stop";
public static final String DISALLOW = "Disallow:";
public static final int SEARCH_LIMIT = 50;
Panel panelMain;
List listMatches;
Label labelStatus;
// URLs to be searched
Vector vectorToSearch;
// URLs already searched
Vector vectorSearched;
// URLs which match
Vector vectorMatches;
There error is;
Interface Actionlistener Of class webcrawler not found.
I have no idea what it means. Pls help me.......
Thanks in advance.
I'm very new to Java programming. I tried to compile 'webcrawler.java'. It gives me one error from this particular line( in bold), -->
public class webcrawler extends Applet implements ActionListener, Runnable {
public static final String SEARCH = "Search";
public static final String STOP = "Stop";
public static final String DISALLOW = "Disallow:";
public static final int SEARCH_LIMIT = 50;
Panel panelMain;
List listMatches;
Label labelStatus;
// URLs to be searched
Vector vectorToSearch;
// URLs already searched
Vector vectorSearched;
// URLs which match
Vector vectorMatches;
There error is;
Interface Actionlistener Of class webcrawler not found.
I have no idea what it means. Pls help me.......
Thanks in advance.