|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JRexException | |
org.mozilla.jrex | |
org.mozilla.jrex.io | |
org.mozilla.jrex.navigation | |
org.mozilla.jrex.pref | |
org.mozilla.jrex.ui | |
org.mozilla.jrex.xpcom |
Uses of JRexException in org.mozilla.jrex |
Methods in org.mozilla.jrex that throw JRexException | |
void |
JRexFactory.startEngine()
This function Starts the XPCOM Engine and JRexEventManager. |
void |
JRexFactory.shutdownEngine()
This function Stops the XPCOM engine and JRexEventManager. |
Uses of JRexException in org.mozilla.jrex.io |
Constructors in org.mozilla.jrex.io that throw JRexException | |
JRexInputStream(long streamPeer)
Creates a JRexInputStream given peer stream handle. |
Uses of JRexException in org.mozilla.jrex.navigation |
Methods in org.mozilla.jrex.navigation that throw JRexException | |
boolean |
WebNavigationImpl.canGoBack()
|
boolean |
WebNavigationImpl.canGoForward()
|
boolean |
WebNavigationImpl.goBack()
|
boolean |
WebNavigationImpl.goForward()
|
boolean |
WebNavigationImpl.goToIndex(int index)
|
void |
WebNavigationImpl.loadURI(URI uri,
int loadFlags,
URI referrer,
InputStream postData,
InputStream headers)
|
void |
WebNavigationImpl.loadURI(String uri,
int loadFlags,
String referrer,
InputStream postData,
InputStream headers)
|
void |
WebNavigationImpl.openWindow(short type,
String uri,
String referrer,
String windowName,
String features)
|
void |
WebNavigationImpl.reload(int reloadFlags)
|
void |
WebNavigationImpl.stop(int stopFlags)
|
Object |
WebNavigationImpl.getDocument()
|
URI |
WebNavigationImpl.getCurrentURI()
|
URI |
WebNavigationImpl.getReferringURI()
|
History |
WebNavigationImpl.getSessionHistory()
|
void |
WebNavigationImpl.setSessionHistory(History his)
|
boolean |
WebNavigation.canGoBack()
Indicates if the object can go back. |
boolean |
WebNavigation.canGoForward()
Indicates if the object can go forward. |
boolean |
WebNavigation.goBack()
Tells the object to navigate to the previous session history item. |
boolean |
WebNavigation.goForward()
Tells the object to navigate to the next Forward session history item. |
boolean |
WebNavigation.goToIndex(int index)
Tells the object to navigate to the session history item at index. |
void |
WebNavigation.loadURI(URI uri,
int loadFlags,
URI referURI,
InputStream postData,
InputStream headers)
Loads a given URI. |
void |
WebNavigation.loadURI(String uri,
int loadFlags,
String referURI,
InputStream postData,
InputStream headers)
Loads a given URI. |
void |
WebNavigation.openWindow(short type,
String uri,
String referrer,
String windowName,
String features)
Open a new window. |
void |
WebNavigation.reload(int reloadFlags)
Tells the Object to reload the current page. |
void |
WebNavigation.stop(int stopFlags)
Stops a load of a URI. |
Object |
WebNavigation.getDocument()
Retrieves the current DOM document for the frame, or lazily creates a blank document if there is none. |
URI |
WebNavigation.getCurrentURI()
Get the currently loaded URI or null. |
URI |
WebNavigation.getReferringURI()
Get the referring URI for the current open page. |
History |
WebNavigation.getSessionHistory()
Get the session history object used to store the session history for the session. |
void |
WebNavigation.setSessionHistory(History his)
Set the session history object used to store the session history for the session. |
Uses of JRexException in org.mozilla.jrex.pref |
Methods in org.mozilla.jrex.pref that throw JRexException | |
void |
JRexPreference.readUserPrefs(String file)
Reads user preference from given file. |
void |
JRexPreference.resetPrefs()
Called to reset preferences |
void |
JRexPreference.resetUserPrefs()
Called to reset user preferences |
void |
JRexPreference.savePrefFile(String file)
Saves the preference to given file. |
String |
JRexPreference.getRoot()
Called to get the root on which this branch is based, such as "browser.startup." |
long |
JRexPreference.getPrefType(String prefName)
Called to determine the type of a specific preference. |
boolean |
JRexPreference.getBoolPref(String prefName)
Called to get the state of an individual boolean preference. |
void |
JRexPreference.setBoolPref(String prefName,
boolean value)
Called to set the state of an individual boolean preference. |
String |
JRexPreference.getCharPref(String prefName)
Called to get the state of an individual string preference. |
void |
JRexPreference.setCharPref(String prefName,
String value)
Called to set the state of an individual string preference. |
long |
JRexPreference.getIntPref(String prefName)
Called to get the state of an individual integer preference. |
void |
JRexPreference.setIntPref(String prefName,
long value)
Called to set the state of an individual integer preference. |
void |
JRexPreference.clearUserPref(String prefName)
Called to clear a user set value from a specific preference. |
boolean |
JRexPreference.isPrefLocked(String prefName)
Called to get the state of is preference is locked. |
void |
JRexPreference.lockPref(String prefName)
Called to lock a specific preference. |
void |
JRexPreference.unlockPref(String prefName)
Called to unlock a specific preference. |
boolean |
JRexPreference.getDefaultBoolPref(String prefName)
Called to get the state of an Default individual boolean preference. |
void |
JRexPreference.setDefaultBoolPref(String prefName,
boolean value)
Called to set the state of an Default individual boolean preference. |
String |
JRexPreference.getDefaultCharPref(String prefName)
Called to get the state of an Default individual string preference. |
void |
JRexPreference.setDefaultCharPref(String prefName,
String value)
Called to set the state of an Default individual string preference. |
long |
JRexPreference.getDefaultIntPref(String prefName)
Called to get the state of an Default individual integer preference. |
void |
JRexPreference.setDefaultIntPref(String prefName,
long value)
Called to set the state of an Default individual integer preference. |
Collection |
JRexPreference.getPrefChildren(String parentPrefName)
Called to get the list of preferences. |
Uses of JRexException in org.mozilla.jrex.ui |
Methods in org.mozilla.jrex.ui that throw JRexException | |
void |
JRexCanvas.print(boolean prompt,
boolean showProgress)
Invoked to print the current page shown by the browser |
void |
JRexCanvas.cancelPrint()
Invoked to cancel an ongoing print request. |
boolean |
JRexCanvas.isPrinting()
Indicates whether a print is under progress. |
void |
JRexCanvas.printPreview(boolean shrinkToFit,
boolean isLandScape)
Invoked to Preview the current page shown by the browser |
void |
JRexCanvas.cancelPrintPreview()
Invoked to cancel an print preview. |
boolean |
JRexCanvas.isPrintPreviewing()
Indicates whether a print preview is under progress. |
int |
JRexCanvas.getPrintPreviewNumPages()
Gets the number of print preview pages. |
void |
JRexCanvas.printPreviewNavigate(int navType,
int pageNum)
Invoked to nagivate in print preview mode. |
void |
JRexCanvas.pageSetup()
Invoked to do print PageSetup. |
boolean |
JRexCanvas.canUndo()
Indicates whether an undo operation can be done. |
boolean |
JRexCanvas.canRedo()
Indicates whether an redo operation can be done. |
boolean |
JRexCanvas.canCut()
Indicates whether an cut operation can be done. |
boolean |
JRexCanvas.canCopy()
Indicates whether an copy operation can be done. |
boolean |
JRexCanvas.canCopyLinkLocation()
Indicates whether an copy linklocation operation can be done. |
boolean |
JRexCanvas.canCopyImageLocation()
Indicates whether an copy Imagelocation operation can be done. |
boolean |
JRexCanvas.canCopyImageContents()
Indicates whether an copy ImageContents operation can be done. |
boolean |
JRexCanvas.canPaste()
Indicates whether an Paste operation can be done. |
boolean |
JRexCanvas.canDelete()
Indicates whether an Delete operation can be done. |
void |
JRexCanvas.undo()
Invoked to undo an edit operation. |
void |
JRexCanvas.redo()
Invoked to redo an edit operation. |
void |
JRexCanvas.cut()
Invoked to cut selected text. |
void |
JRexCanvas.copy()
Invoked to copy selected text. |
void |
JRexCanvas.copyLinkLocation()
Invoked to copy selected LinkLocation. |
void |
JRexCanvas.copyImageLocation()
Invoked to copy selected ImageLocation. |
void |
JRexCanvas.copyImageContents()
Invoked to copy ImageContents. |
void |
JRexCanvas.paste()
Invoked to paste text from clipboard. |
void |
JRexCanvas.selectAll()
Invoked to select all text in an control. |
void |
JRexCanvas.selectNone()
Invoked to clear all selection in an control. |
void |
JRexCanvas.delete()
Invoked to delete selected text. |
void |
JRexCanvas.find()
Invoked to find a given text. |
void |
JRexCanvas.findAgain()
Invoked to repeat previous find. |
Uses of JRexException in org.mozilla.jrex.xpcom |
Methods in org.mozilla.jrex.xpcom that throw JRexException | |
static JRexXPCOM |
JRexXPCOMImpl.getInstance()
A factory method to get the instance of JRexXPCOM Implementation. |
void |
JRexXPCOMImpl.startXPCOM()
A function to start mozilla XPCOM engine. |
void |
JRexXPCOMImpl.stopXPCOM()
|
void |
JRexXPCOM.startXPCOM()
A function to start mozilla XPCOM engine. |
void |
JRexXPCOM.stopXPCOM()
A function to stop mozilla XPCOM engine. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |