Interface HistoryFunctions
-
- All Superinterfaces:
JS5ObjectFunctions,JSObjectFunctions
- All Known Implementing Classes:
History
public interface HistoryFunctions extends JS5ObjectFunctions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidback()function back - Loads the previous URL in the history list.voidforward()function forward - Loads the next URL in the history list.voidgo(JSNumber arg)function go - Loads a specific URL from the history list.voidgo(JSString arg)function go - Loads a specific URL from the history list.-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSObjectFunctions
hasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOf
-
-
-
-
Method Detail
-
back
void back()
function back - Loads the previous URL in the history list.- See Also:
History
-
forward
void forward()
function forward - Loads the next URL in the history list.- See Also:
History
-
go
void go(JSNumber arg)
function go - Loads a specific URL from the history list.- Parameters:
arg- goes to the URL within the specific position (-1 goes back one page, 1 goes forward one page)- See Also:
History
-
-