A B C D E F G I N O P R S U

A

addRange(int, int) - Method in interface org.mozilla.pluglet.mozilla.ByteRanges
Sets a range of bytes, given an offset and a length.

B

beginWaitCursor() - Method in interface org.mozilla.pluglet.mozilla.PlugletManager2
Puts up a wait cursor.
ByteRanges - interface org.mozilla.pluglet.mozilla.ByteRanges.
This interface is for setting up a range of bytes.

C

createPluglet(String) - Method in interface org.mozilla.pluglet.PlugletFactory
Creates a new Pluglet instance based on a MIME type.

D

destroy() - Method in interface org.mozilla.pluglet.Pluglet
Called to instruct the Pluglet instance to destroy itself.

E

endWaitCursor() - Method in interface org.mozilla.pluglet.mozilla.PlugletManager2
Restores the previous (non-wait) cursor.

F

findProxyForURL(URL) - Method in interface org.mozilla.pluglet.mozilla.PlugletManager2
For a given URL, this method returns a String for the proxy information.

G

getAlignment() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns the alignment attribute in the tag.
getAttribute(String) - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo
Returns a value for a particular attribute.
getAttribute(String) - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
 
getAttributes() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo
Returns all the name-value pairs found in the tag attributes.
getAttributes() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
 
getBorderHorizSpace() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns an int for the border horizontal space attribute of the tag (e.g., hspace with IMG tag).
getBorderVertSpace() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns an int for the border vertical space attribute of the tag (e.g., vspace with IMG tag).
getContentType() - Method in interface org.mozilla.pluglet.mozilla.PlugletStreamInfo
Returns the MIME type for a particular stream.
getDocumentBase() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Gets the base for the document.
getDocumentEncoding() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns the character encoding used in the document (e.g., ASCSII, Big5 (Traditional Chinese), Cp1122 (IBM Estonia).
getHeight() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns an int for the height attribute of the tag.
getLastModified() - Method in interface org.mozilla.pluglet.mozilla.PlugletStreamInfo
Returns the time the data in the URL was last modified, measured in seconds since 12:00 midnight, GMT, January 1, 1970.
getLength() - Method in interface org.mozilla.pluglet.mozilla.PlugletStreamInfo
Returns the length of a stream in bytes.
getMIMEType() - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
Returns the MIME type of the Pluglet instance.
getMode() - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
Returns an int (integer value) indicating whether the Pluglet is embedded in HTML in the page via an OBJECT or EMBED element and is part of the page, or whether the Pluglet is in a full page of its own.
getStreamType() - Method in interface org.mozilla.pluglet.PlugletStreamListener
Returns the type of stream.
getTagInfo() - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
For the Pluglet instance, returns the tag information associated with it.
getTagText() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Gets the complete text of the HTML tag that was used to instantiate this Pluglet instance.
getTagType() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Gets the HTML tag type associated with creation of the Pluglet instance.
getUniqueID() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns a unique ID for the current document in which the Pluglet is displayed.
getURL() - Method in interface org.mozilla.pluglet.mozilla.PlugletStreamInfo
Specifies the URL that was used to originally request the stream.
getURL(Pluglet, URL, String, PlugletStreamListener, String, URL, boolean) - Method in interface org.mozilla.pluglet.mozilla.PlugletManager
Fetches a URL.
getValue(int) - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
Returns the value of a variable associated with the PlugletManager instance.
getWidth() - Method in interface org.mozilla.pluglet.mozilla.PlugletTagInfo2
Returns an int value for the width attribute of the tag.

I

initialize(PlugletManager) - Method in interface org.mozilla.pluglet.PlugletFactory
Initializes the PlugletFactory instance and is called before any new Pluglet instances are created.
initialize(PlugletPeer) - Method in interface org.mozilla.pluglet.Pluglet
Initializes a newly created Pluglet instance, passing to it an instance of PlugletPeer, which it should use for communication with the browser.
isSeekable() - Method in interface org.mozilla.pluglet.mozilla.PlugletStreamInfo
Indicates if a stream is seekable; that is, if it is possible to move to a particular point in the stream.

N

NETSCAPE_WINDOW - Static variable in interface org.mozilla.pluglet.mozilla.PlugletPeer
This is a static final integer variable set to 3.
newStream() - Method in interface org.mozilla.pluglet.Pluglet
This is called to tell the Pluglet instance that the stream data for an SRC or DATA attribute (corresponding to an EMBED or OBJECT tag) is ready to be read; it is also called for a full-page Pluglet.
newStream(String, String) - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
This method is called by the Pluglet instance when it wishes to send a stream of data to the browser.

O

onDataAvailable(PlugletStreamInfo, InputStream, int) - Method in interface org.mozilla.pluglet.PlugletStreamListener
This would be called by the browser to indicate that data is available in the input stream.
onFileAvailable(PlugletStreamInfo, String) - Method in interface org.mozilla.pluglet.PlugletStreamListener
This would be called by the browser to indicate the availability of a local file name for the stream data.
onStartBinding(PlugletStreamInfo) - Method in interface org.mozilla.pluglet.PlugletStreamListener
This would be called by the browser to indicate that the URL has started to load.
onStopBinding(PlugletStreamInfo, int) - Method in interface org.mozilla.pluglet.PlugletStreamListener
This would be called by the browser to indicate that the URL has finished loading.

P

Pluglet - interface org.mozilla.pluglet.Pluglet.
A Pluglet is a Plugin written in the Java programming language.
PlugletFactory - interface org.mozilla.pluglet.PlugletFactory.
This interface includes the functions to create an instance of Pluglet, and initialize the PlugletFactory instance and shut it down when no longer required.
PlugletManager - interface org.mozilla.pluglet.mozilla.PlugletManager.
The PlugletManager interface includes functionality to get and post URLs and return userAgent for the browser.
PlugletManager2 - interface org.mozilla.pluglet.mozilla.PlugletManager2.
This interface extends the functionality of the PlugletManager interface, including methods to begin and end a wait cursor, determine if a URL protocol is supported, and get proxy information for a URL.
PlugletPeer - interface org.mozilla.pluglet.mozilla.PlugletPeer.
The PlugletPeer interface is the set of functions implemented by the browser to support a Pluglet instance.
PlugletStreamInfo - interface org.mozilla.pluglet.mozilla.PlugletStreamInfo.
This interface returns various information about the stream such as the MIME type and whether the stream is seekable.
PlugletStreamListener - interface org.mozilla.pluglet.PlugletStreamListener.
This is a stream listener that provides various methods, such as notification that data is available in the input stream, that the URL has started to load, that it has stopped loading, etc.
PlugletTagInfo - interface org.mozilla.pluglet.mozilla.PlugletTagInfo.
This interface provides information about the HTML tag on the page.
PlugletTagInfo2 - interface org.mozilla.pluglet.mozilla.PlugletTagInfo2.
This interface extends PlugletTagInfo, providing additional information about Pluglet tags (elements).
postURL(Pluglet, URL, int, byte[], boolean, String, PlugletStreamListener, String, URL, boolean, int, byte[]) - Method in interface org.mozilla.pluglet.mozilla.PlugletManager
Posts to a URL with post data and/or post headers.
print(PrinterJob) - Method in interface org.mozilla.pluglet.Pluglet
Called to instruct the Pluglet instance to print itself to a printer.

R

reloadPluglets(boolean) - Method in interface org.mozilla.pluglet.mozilla.PlugletManager
This method reloads all Pluglets in the Pluglets directory.
requestRead(ByteRanges) - Method in interface org.mozilla.pluglet.mozilla.PlugletStreamInfo
Requests reading from the input stream.

S

setWindow(Frame) - Method in interface org.mozilla.pluglet.Pluglet
Called by the browser to set or change the frame containing the Pluglet instance.
setWindowSize(int, int) - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
Sets the desired size of the window associated with the Pluglet instance.
showStatus(String) - Method in interface org.mozilla.pluglet.mozilla.PlugletPeer
Invoking this method causes status information to be displayed at the bottom of the window associated with the Pluglet instance.
shutdown() - Method in interface org.mozilla.pluglet.PlugletFactory
Called when the browser is done with a PlugletFactory instance.
start() - Method in interface org.mozilla.pluglet.Pluglet
Called to instruct the Pluglet instance to start.
stop() - Method in interface org.mozilla.pluglet.Pluglet
Called to instruct the Pluglet instance to stop and suspend its state.
STREAM_TYPE_AS_FILE - Static variable in interface org.mozilla.pluglet.PlugletStreamListener
Indicates file stream type.
STREAM_TYPE_AS_FILE_ONLY - Static variable in interface org.mozilla.pluglet.PlugletStreamListener
Indicates file-only stream type.
STREAM_TYPE_NORMAL - Static variable in interface org.mozilla.pluglet.PlugletStreamListener
Indicates normal stream type.
STREAM_TYPE_SEEK - Static variable in interface org.mozilla.pluglet.PlugletStreamListener
Indicates seek stream type.
supportsURLProtocol(String) - Method in interface org.mozilla.pluglet.mozilla.PlugletManager2
Returns true if a URL protocol (e.g., http) is supported.

U

userAgent() - Method in interface org.mozilla.pluglet.mozilla.PlugletManager
Returns the userAgent String for the browser.

A B C D E F G I N O P R S U