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
-
gotAHREF(String, URL, Object)
- This gets called when the scanner finds an <A HREF=""> URL.
-
gotAREAHREF(String, URL, Object)
- This gets called when the scanner finds a <AREA HREF=""> URL.
-
gotBASEHREF(String, URL, Object)
- This gets called when the scanner finds a <BASE HREF=""> URL.
-
gotBODYBACKGROUND(String, URL, Object)
- This gets called when the scanner finds a <BODY BACKGROUND=""> URL.
-
gotFRAMESRC(String, URL, Object)
- This gets called when the scanner finds an <FRAME SRC=""> URL.
-
gotIMGSRC(String, URL, Object)
- This gets called when the scanner finds an <IMG SRC=""> URL.
-
gotLINKHREF(String, URL, Object)
- This gets called when the scanner finds a <LINK HREF=""> URL.
gotAHREF
public abstract void gotAHREF(String urlStr,
URL contextUrl,
Object clientData)
- This gets called when the scanner finds an <A HREF=""> URL.
gotIMGSRC
public abstract void gotIMGSRC(String urlStr,
URL contextUrl,
Object clientData)
- This gets called when the scanner finds an <IMG SRC=""> URL.
gotFRAMESRC
public abstract void gotFRAMESRC(String urlStr,
URL contextUrl,
Object clientData)
- This gets called when the scanner finds an <FRAME SRC=""> URL.
gotBASEHREF
public abstract void gotBASEHREF(String urlStr,
URL contextUrl,
Object clientData)
- This gets called when the scanner finds a <BASE HREF=""> URL.
gotAREAHREF
public abstract void gotAREAHREF(String urlStr,
URL contextUrl,
Object clientData)
- This gets called when the scanner finds a <AREA HREF=""> URL.
gotLINKHREF
public abstract void gotLINKHREF(String urlStr,
URL contextUrl,
Object clientData)
- This gets called when the scanner finds a <LINK HREF=""> URL.
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