All Packages  Class Hierarchy  This Package  Previous  Next  Index


Interface Acme.HtmlObserver

public interface HtmlObserver
Callback interface for HtmlScanner.

Clients of HtmlScanner implement this in order to get URLs passed back to them.

Fetch the software.
Fetch the entire Acme package.

See Also:
HtmlScanner

Method Index

 o gotAHREF(String, URL, Object)
This gets called when the scanner finds an <A HREF=""> URL.
 o gotAREAHREF(String, URL, Object)
This gets called when the scanner finds a <AREA HREF=""> URL.
 o gotBASEHREF(String, URL, Object)
This gets called when the scanner finds a <BASE HREF=""> URL.
 o gotBODYBACKGROUND(String, URL, Object)
This gets called when the scanner finds a <BODY BACKGROUND=""> URL.
 o gotFRAMESRC(String, URL, Object)
This gets called when the scanner finds an <FRAME SRC=""> URL.
 o gotIMGSRC(String, URL, Object)
This gets called when the scanner finds an <IMG SRC=""> URL.
 o gotLINKHREF(String, URL, Object)
This gets called when the scanner finds a <LINK HREF=""> URL.

Methods

 o gotAHREF
 public abstract void gotAHREF(String urlStr,
                               URL contextUrl,
                               Object clientData)
This gets called when the scanner finds an <A HREF=""> URL.

 o gotIMGSRC
 public abstract void gotIMGSRC(String urlStr,
                                URL contextUrl,
                                Object clientData)
This gets called when the scanner finds an <IMG SRC=""> URL.

 o gotFRAMESRC
 public abstract void gotFRAMESRC(String urlStr,
                                  URL contextUrl,
                                  Object clientData)
This gets called when the scanner finds an <FRAME SRC=""> URL.

 o gotBASEHREF
 public abstract void gotBASEHREF(String urlStr,
                                  URL contextUrl,
                                  Object clientData)
This gets called when the scanner finds a <BASE HREF=""> URL.

 o gotAREAHREF
 public abstract void gotAREAHREF(String urlStr,
                                  URL contextUrl,
                                  Object clientData)
This gets called when the scanner finds a <AREA HREF=""> URL.

 o gotLINKHREF
 public abstract void gotLINKHREF(String urlStr,
                                  URL contextUrl,
                                  Object clientData)
This gets called when the scanner finds a <LINK HREF=""> URL.

 o gotBODYBACKGROUND
 public abstract void gotBODYBACKGROUND(String urlStr,
                                        URL contextUrl,
                                        Object clientData)
This gets called when the scanner finds a <BODY BACKGROUND=""> URL.


All Packages  Class Hierarchy  This Package  Previous  Next  Index

ACME Java  ACME Labs