A B C D E F G H I L M N O P Q R S T U W

A

addAjaxListener(AjaxListener) - Method in class org.mozilla.mcp.MCP
Add the argument AjaxListener to this MCP instance.
addDocumentLoadListener(DocumentLoadListener) - Method in interface org.mozilla.webclient.EventRegistration
Add the argument listener as a DocumentLoadListener on the current BrowserControl.
addKeyListener(KeyListener) - Method in class org.mozilla.mcp.MCP
Add the argument KeyListener to the Canvas for this MCP instance.
addKeyListener(KeyListener) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
addKeyListener(KeyListener) - Method in interface org.mozilla.webclient.EventRegistration2
Add the argument listener as a KeyListener for the current BrowserControl.
addMouseListener(MouseListener) - Method in class org.mozilla.mcp.MCP
Add the argument MouseListener to the Canvas for this MCP instance.
addMouseListener(MouseListener) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
addMouseListener(MouseListener) - Method in interface org.mozilla.webclient.EventRegistration
Deprecated. This method has been replaced by leveraging the method of the same name on BrowserControlCanvas.
addNewWindowListener(NewWindowListener) - Method in interface org.mozilla.webclient.EventRegistration2
Deprecated. Use EventRegistration2.setNewWindowListener(org.mozilla.webclient.NewWindowListener) instead. Implementations must implement this method as a call to EventRegistration2.setNewWindowListener(org.mozilla.webclient.NewWindowListener) passing null, followed by a call to EventRegistration2.setNewWindowListener(org.mozilla.webclient.NewWindowListener) passing the argument listener.
addNotify() - Method in class org.mozilla.webclient.BrowserControlCanvas
Instantiate the Mozilla WebShell container.
AjaxListener - Class in org.mozilla.mcp
 
AjaxListener() - Constructor for class org.mozilla.mcp.AjaxListener
 
appTerminate() - Static method in class org.mozilla.webclient.BrowserControlFactory
This method must be called when the application no longer needs to use the Webclient API for the rest of its lifetime.

B

back() - Method in interface org.mozilla.webclient.History
 
blockingClickElement(String) - Method in class org.mozilla.mcp.MCP
Find the DOM element within the current page matching the argument id using MCP.findElement(java.lang.String).
blockingLoad(String) - Method in class org.mozilla.mcp.MCP
Load the url, blocking until the load has completed.
BOOKMARKS_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the Bookmarks API.
BROWSER_CONTROL_CANVAS_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the BrowserControlCanvas that must be added to the application to show the browser window.
BROWSER_TYPE_NATIVE - Static variable in interface org.mozilla.webclient.BrowserControl
Deprecated. the type of browser implementation is derived using a services definition loaded from Utilities.getImplFromServices(java.lang.String)
BROWSER_TYPE_NON_NATIVE - Static variable in interface org.mozilla.webclient.BrowserControl
 
BrowserControl - Interface in org.mozilla.webclient
Provides a common access point for other webclient interfaces.
browserControl - Variable in class org.mozilla.webclient.NewWindowEvent
 
BrowserControlCanvas - Class in org.mozilla.webclient
 
BrowserControlCanvas() - Constructor for class org.mozilla.webclient.BrowserControlCanvas
just initialize all the ivars.
BrowserControlFactory - Class in org.mozilla.webclient
The factory from which BrowserControl instances are created.
BUTTON_PRESSED_KEY - Static variable in interface org.mozilla.webclient.Prompt
 

C

CACHE_MANAGER_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the cache management API.
canBack() - Method in interface org.mozilla.webclient.History
 
canForward() - Method in interface org.mozilla.webclient.History
 
CHECKBOX_STATE_KEY - Static variable in interface org.mozilla.webclient.Prompt
 
CHROME_ALL - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_DEFAULT - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_EXTRA - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_LOCATIONBAR - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to display the input field for entering URLs directly into the browser.
CHROME_MENUBAR - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to display the menu bar.
CHROME_PERSONAL_TOOLBAR - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to display the personal bar.
CHROME_SCROLLBARS - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to display horizontal and vertical scroll bars.
CHROME_STATUSBAR - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to add a status bar at the bottom of the window.
CHROME_TITLEBAR - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to display a title bar for the window.
CHROME_TOOLBAR - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available.
CHROME_WINDOW_BORDERS - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_WINDOW_CLOSE - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_WINDOW_MIN - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether the window is minimizable.
CHROME_WINDOW_POPUP - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_WINDOW_RESIZE - Static variable in interface org.mozilla.webclient.NewWindowListener
Specifies whether the window is resizable.
CHROME_WITH_POSITION - Static variable in interface org.mozilla.webclient.NewWindowListener
 
CHROME_WITH_SIZE - Static variable in interface org.mozilla.webclient.NewWindowListener
 
clearAllSelections() - Method in interface org.mozilla.webclient.CurrentPage2
Make it so the current page has nothing selected.
clearHistory() - Method in interface org.mozilla.webclient.History
 
clickElement(String) - Method in class org.mozilla.mcp.MCP
Find the DOM element within the current page matching the argument id using MCP.findElement(java.lang.String).
copyCurrentSelectionHtmlToSystemClipboard() - Method in interface org.mozilla.webclient.CurrentPage2
Like CurrentPage.copyCurrentSelectionToSystemClipboard() but puts the html of the selection on the clipboard, instead of the plain text
copyCurrentSelectionToSystemClipboard() - Method in interface org.mozilla.webclient.CurrentPage
Copy the current selection to the system clipboard so its contents can be obtained using the standard Java Toolkit.getDefaultToolkit().getSystemClipboard() method.
createWindow(int, Rectangle) - Method in interface org.mozilla.webclient.WindowControl
 
CURRENT_PAGE_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the CurrentPage API.
CurrentPage - Interface in org.mozilla.webclient
Get information about and perform operations on the page currently being shown in the BrowserControlCanvas for the BrowserControl instance from which this CurrentPage instance was obtained.
CurrentPage2 - Interface in org.mozilla.webclient
Extended current page functionality.

D

deleteBrowserControl() - Method in class org.mozilla.mcp.MCP
Make invisible, and delete the BrowserControl instance for this MCP instance.
deleteBrowserControl(BrowserControl) - Static method in class org.mozilla.webclient.BrowserControlFactory
Delete a BrowserControl instance created with BrowserControlFactory.newBrowserControl().
DocumentLoadEvent - Class in org.mozilla.webclient
Event class for the DocumentLoadListener interface.
DocumentLoadEvent(Object, long, Object) - Constructor for class org.mozilla.webclient.DocumentLoadEvent
Create a new DocumentLoadListener instance.
DocumentLoadListener - Interface in org.mozilla.webclient
The WebclientEventListener.eventDispatched(org.mozilla.webclient.WebclientEvent) method is passed a DocumentLoadEvent instance.

E

EDIT_FIELD_1_KEY - Static variable in interface org.mozilla.webclient.Prompt
 
EDIT_FIELD_2_KEY - Static variable in interface org.mozilla.webclient.Prompt
 
END_AJAX_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates the current fetch is an Ajax transaction in that has completed.
END_DOCUMENT_LOAD_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
The type of the event to indicate the end of a document load.
END_URL_LOAD_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
If the current document is a compound document, this event will be generated, indicating the end of a URL load within a document load for that compound document.
endAjax(Map) - Method in class org.mozilla.mcp.AjaxListener
 
ERROR_AJAX_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates the current fetch is an Ajax transaction in an error state.
errorAjax(Map) - Method in class org.mozilla.mcp.AjaxListener
 
EVENT_REGISTRATION_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the EventRegistration API.
eventDispatched(WebclientEvent) - Method in class org.mozilla.mcp.AjaxListener
 
eventDispatched(WebclientEvent) - Method in interface org.mozilla.webclient.WebclientEventListener
This method will be called by the browser when a particular event occurs.
EventRegistration - Interface in org.mozilla.webclient
Allow the user to add and remove listeners on the current BrowserControl instance.
EventRegistration2 - Interface in org.mozilla.webclient
Extended event registration features.
EXTENDED_EVENT_REGISTRATION_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the EventRegistration2 API.

F

FETCH_INTERRUPT_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates the current fetch was interrupted.
find(String, boolean, boolean) - Method in interface org.mozilla.webclient.CurrentPage2
Enhanced version of CurrentPage.findInPage(java.lang.String, boolean, boolean) that allows the caller to discover the result of the find.
findElement(String) - Method in class org.mozilla.mcp.MCP
Return the DOM Element with the given id or name.
findInPage(String) - Method in class org.mozilla.mcp.MCP
Return true if and only if the argument toFind occurs within the current page.
findInPage(String, boolean, boolean) - Method in interface org.mozilla.webclient.CurrentPage
Deprecated. this method has been replaced by CurrentPage2.find(java.lang.String, boolean, boolean).
findNext() - Method in interface org.mozilla.webclient.CurrentPage2
Enhanced version of CurrentPage.findNextInPage() that allows the caller to discover the result of the find.
findNextInPage() - Method in interface org.mozilla.webclient.CurrentPage
Deprecated. this method has been replaced by CurrentPage2.findNext().
forward() - Method in interface org.mozilla.webclient.History
 

G

getBackList() - Method in interface org.mozilla.webclient.History
 
getBoundsRelativeToWindow() - Method in class org.mozilla.webclient.BrowserControlCanvas
 
getBrowserControl() - Method in class org.mozilla.mcp.MCP
Return the Webclient BrowserControl instance used by this MCP instance.
getBrowserControl() - Method in class org.mozilla.webclient.NewWindowEvent
 
getCurrentHistoryIndex() - Method in interface org.mozilla.webclient.History
 
getCurrentURL() - Method in interface org.mozilla.webclient.CurrentPage
Return the URL of the document currently showing.
getDOM() - Method in interface org.mozilla.webclient.CurrentPage
Return a W3C DOM Document of the document currently showing.
getEndContainer() - Method in interface org.mozilla.webclient.Selection
Get the Node that contains the end of this selection.
getEndOffset() - Method in interface org.mozilla.webclient.Selection
Get the offset to which the selection ends within the endContainer.
getEventCoordsLocalToWindow(MouseEvent) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
getEventData() - Method in class org.mozilla.webclient.WebclientEvent
Return the event data for this event.
getForwardList() - Method in interface org.mozilla.webclient.History
 
getHistory() - Method in interface org.mozilla.webclient.History
 
getHistoryEntry(int) - Method in interface org.mozilla.webclient.History
 
getHistoryLength() - Method in interface org.mozilla.webclient.History
 
getInstance() - Static method in class org.mozilla.webclient.BrowserControlFactory
This method enables separating the webclient interface from its implementation via the Utilities.getImplFromServices(java.lang.String) method.
getLastAccessTime() - Method in interface org.mozilla.webclient.HistoryEntry
 
getNativeWebShell() - Method in interface org.mozilla.webclient.WindowControl
 
getNumberOfAccesses() - Method in interface org.mozilla.webclient.HistoryEntry
 
getPageInfo() - Method in interface org.mozilla.webclient.CurrentPage
Unimplemented Return meta-information for the current page.
getRealizedVisibleBrowserWindow() - Method in class org.mozilla.mcp.MCP
Return the realized and visible java.awt.Frame containing the actual browser window.
getSelection() - Method in interface org.mozilla.webclient.CurrentPage2
Return a Selection instance for the current selection.
getSource() - Method in interface org.mozilla.webclient.CurrentPage
Return the source for the current page as a String.
getSourceBytes() - Method in interface org.mozilla.webclient.CurrentPage
Return the source for the current page as a byte array.
getStartContainer() - Method in interface org.mozilla.webclient.Selection
Get the Node that contains the start of this selection.
getStartOffset() - Method in interface org.mozilla.webclient.Selection
Get the offset to which the selection starts within the startContainer.
getType() - Method in class org.mozilla.webclient.WebclientEvent
Return the type of this event.
getURL() - Method in interface org.mozilla.webclient.HistoryEntry
 
getURLForIndex(int) - Method in interface org.mozilla.webclient.History
 
getWebShell() - Method in class org.mozilla.webclient.BrowserControlCanvas
 
getWindow() - Method in class org.mozilla.webclient.BrowserControlCanvas
Create the Native gtk window and get it's handle
getWindowBounds() - Method in class org.mozilla.webclient.BrowserControlCanvas
 

H

highlightSelection(Selection) - Method in interface org.mozilla.webclient.CurrentPage2
Take the argument Selection and highlight it in the current page.
History - Interface in org.mozilla.webclient
 
HISTORY_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the History API.
HistoryEntry - Interface in org.mozilla.webclient
 

I

init(String, Node, Node, int, int) - Method in interface org.mozilla.webclient.Selection
Initialize this Selection object.
initialize(BrowserControl) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
isValid() - Method in interface org.mozilla.webclient.Selection
Test if the selection properties have been set.

L

LOAD_FORCE_RELOAD - Static variable in interface org.mozilla.webclient.Navigation
 
LOAD_NORMAL - Static variable in interface org.mozilla.webclient.Navigation
These flags can be or'd together for the argument to refresh().
loadFromStream(InputStream, String, String, int, Properties) - Method in interface org.mozilla.webclient.Navigation
 
loadURL(String) - Method in interface org.mozilla.webclient.Navigation
 

M

MCP - Class in org.mozilla.mcp
The main class for the Mozilla Control Program.
MCP() - Constructor for class org.mozilla.mcp.MCP
Creates a new instance of MCP
moveWindowTo(int, int) - Method in interface org.mozilla.webclient.WindowControl
 

N

Navigation - Interface in org.mozilla.webclient
 
Navigation2 - Interface in org.mozilla.webclient
 
NAVIGATION_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the Navigation API.
newBrowserControl() - Static method in class org.mozilla.webclient.BrowserControlFactory
Create, initialize, and return a new BrowserControl instance.
NewWindowEvent - Class in org.mozilla.webclient
 
NewWindowEvent(Object, long, Object) - Constructor for class org.mozilla.webclient.NewWindowEvent
 
NewWindowListener - Interface in org.mozilla.webclient
This interface allows the implementer to be notified of NewWindowEvents that occur as a result of user browsing.

O

org.mozilla.mcp - package org.mozilla.mcp
Mozilla Control Program
org.mozilla.webclient - package org.mozilla.webclient
The Webclient public API.

P

PageInfoListener - Interface in org.mozilla.webclient
This DocumentLoadListener subclass adds the ability to get detailed information on each event.
PASSWORD_KEY - Static variable in interface org.mozilla.webclient.Prompt
 
post(String, String, String, String) - Method in interface org.mozilla.webclient.Navigation2
 
PREFERENCES_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the Preferences API.
print() - Method in interface org.mozilla.webclient.CurrentPage2
Pop up a native print dialog to allow the user to print the current page.
PRINT_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the Print API.
printPreview(boolean) - Method in interface org.mozilla.webclient.CurrentPage2
Turn the browser into print preview mode depending on the value of the argument preview.
PROFILE_MANAGER_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the ProfileManager API.
PROGRESS_URL_LOAD_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates a progress message from the browser.
Prompt - Interface in org.mozilla.webclient
The custom app must implement this interface in order to supply the underlying browser with basic authentication behavior.
promptUsernameAndPassword(String, String, String, int, Properties) - Method in interface org.mozilla.webclient.Prompt
Puts up a username/password dialog with OK and Cancel buttons.

Q

queryInterface(String) - Method in interface org.mozilla.webclient.BrowserControl
Obtain a reference to a class implementing the argument interfaceName.

R

refresh(long) - Method in interface org.mozilla.webclient.Navigation
 
removeAjaxListener(AjaxListener) - Method in class org.mozilla.mcp.MCP
Remove the argument AjaxListener to this MCP instance.
removeDocumentLoadListener(DocumentLoadListener) - Method in interface org.mozilla.webclient.EventRegistration
Remove the argument listener as a DocumentLoadListener on the current BrowserControl.
removeFocus() - Method in interface org.mozilla.webclient.WindowControl
 
removeKeyListener(KeyListener) - Method in class org.mozilla.mcp.MCP
Remove the argument KeyListener from the Canvas for this MCP instance.
removeKeyListener(KeyListener) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
removeKeyListener(KeyListener) - Method in interface org.mozilla.webclient.EventRegistration2
Remove the argument listener from the current BrowserControl.
removeMouseListener(MouseListener) - Method in class org.mozilla.mcp.MCP
Remove the argument MouseListener from the Canvas for this MCP instance.
removeMouseListener(MouseListener) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
removeMouseListener(MouseListener) - Method in interface org.mozilla.webclient.EventRegistration
Deprecated. This method has been replaced by leveraging the method of the same name on BrowserControlCanvas.
removeNewWindowListener(NewWindowListener) - Method in interface org.mozilla.webclient.EventRegistration2
Deprecated. Use EventRegistration2.setNewWindowListener(org.mozilla.webclient.NewWindowListener) passing null.
repaint(boolean) - Method in interface org.mozilla.webclient.WindowControl
 
resetFind() - Method in interface org.mozilla.webclient.CurrentPage
Reset the find so that the next find starts from the beginning or end of the page.

S

selectAll() - Method in interface org.mozilla.webclient.CurrentPage
Tell the underlying browser to select all text in the current page.
Selection - Interface in org.mozilla.webclient
Selection is more like a DOM Range object which represents a portion of a document or a document fragment.
setAppData(String) - Method in class org.mozilla.mcp.MCP
 
setAppData(String) - Static method in class org.mozilla.webclient.BrowserControlFactory
Initialize the webclient API passing in the path to the browser binary, if necessary.
setAppData(String, String) - Static method in class org.mozilla.webclient.BrowserControlFactory
Deprecated. Use BrowserControlFactory.setAppData(java.lang.String) instead.
setBounds(int, int, int, int) - Method in class org.mozilla.mcp.MCP
 
setBounds(int, int, int, int) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
setBounds(Rectangle) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
setBounds(Rectangle) - Method in interface org.mozilla.webclient.WindowControl
 
setBrowserControl(BrowserControl) - Method in class org.mozilla.webclient.NewWindowEvent
 
setCurrentHistoryIndex(int) - Method in interface org.mozilla.webclient.History
 
setFocus() - Method in interface org.mozilla.webclient.WindowControl
 
setNewWindowListener(NewWindowListener) - Method in interface org.mozilla.webclient.EventRegistration2
Set the argument listener as the one and only NewWindowListener for the current BrowserControl.
setProfile(String) - Static method in class org.mozilla.webclient.BrowserControlFactory
If called before the first BrowserControl has been created, set the name of the profile to use for this browser session.
setPrompt(Prompt) - Method in interface org.mozilla.webclient.Navigation
Gives this Navigation instance the ability to call back the custom app when a site with basic authentication, cookies, etc, is encountered.
setVisible(boolean) - Method in class org.mozilla.webclient.BrowserControlCanvas
 
setVisible(boolean) - Method in interface org.mozilla.webclient.WindowControl
 
START_AJAX_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates the current fetch is the start of an Ajax transaction.
START_DOCUMENT_LOAD_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
The type of the event to indicate the start of a document load.
START_URL_LOAD_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
If the current document is a compound document, this event will be generated, indicating the start of a URL load within a document load for that compound document.
startAjax(Map) - Method in class org.mozilla.mcp.AjaxListener
 
STATUS_URL_LOAD_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates a status message from the browser.
stop() - Method in interface org.mozilla.webclient.Navigation
 

T

toString() - Method in interface org.mozilla.webclient.Selection
Get the text representation of this Selection object.

U

UnimplementedException - Exception in org.mozilla.webclient
 
UnimplementedException() - Constructor for exception org.mozilla.webclient.UnimplementedException
 
UnimplementedException(String) - Constructor for exception org.mozilla.webclient.UnimplementedException
 
universalDialog(String, String, String, String, String, String, String, String, String, String, int, int, boolean, Properties) - Method in interface org.mozilla.webclient.Prompt
Tells the custom app to put up a modal dialog using the information in the params for the dialog ui.
UNKNOWN_CONTENT_EVENT_MASK - Static variable in class org.mozilla.webclient.DocumentLoadEvent
This event indicates the browser encountered an unknown content that it does not know how to display.
USER_NAME_KEY - Static variable in interface org.mozilla.webclient.Prompt
 

W

WebclientEvent - Class in org.mozilla.webclient
Base event class for browser specific events coming from the browser.
WebclientEvent(Object, long, Object) - Constructor for class org.mozilla.webclient.WebclientEvent
Construct a new instance with the given source, type, and eventData.
WebclientEventListener - Interface in org.mozilla.webclient
The base interface for many, but not all, events coming from the browser.
WINDOW_CONTROL_NAME - Static variable in interface org.mozilla.webclient.BrowserControl
The name of the interface for the WindowControl API.
WindowControl - Interface in org.mozilla.webclient
 

A B C D E F G H I L M N O P Q R S T U W

Copyright © 2002-2007 Mozilla.org All Rights Reserved.