public interface CefFrame
| Modifier and Type | Method and Description |
|---|---|
void |
copy()
Execute copy in this frame.
|
void |
cut()
Execute cut in this frame.
|
void |
dispose()
Removes the native reference from an unused object.
|
void |
executeJavaScript(java.lang.String code,
java.lang.String url,
int line)
Execute a string of JavaScript code in this frame.
|
java.lang.String |
getIdentifier()
Returns the globally unique identifier for this frame or an empty string if the
underlying frame does not yet exist.
|
java.lang.String |
getName()
Returns the name for this frame.
|
CefFrame |
getParent()
Returns the parent of this frame or NULL if this is the main (top-level)
frame.
|
java.lang.String |
getURL()
Emits the URL currently loaded in this frame.
|
boolean |
isFocused()
Returns true if this is the focused frame.
|
boolean |
isMain()
Returns true if this is the main (top-level) frame.
|
boolean |
isValid()
True if this object is currently attached to a valid frame.
|
void |
paste()
Execute paste in this frame.
|
void |
redo()
Execute redo in this frame.
|
void |
selectAll()
Execute selectAll in this frame.
|
void |
undo()
Execute undo in this frame.
|
void copy()
void cut()
void dispose()
void executeJavaScript(java.lang.String code,
java.lang.String url,
int line)
code - The code to be executed.url - The URL where the script in question can be found.line - The base line number to use for error reporting.java.lang.String getIdentifier()
java.lang.String getName()
CefFrame getParent()
java.lang.String getURL()
boolean isFocused()
boolean isMain()
boolean isValid()
void paste()
void redo()
void selectAll()
void undo()