Searched defs:edit (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DUndoableEditEvent.java52 * @param edit an UndoableEdit object
54 public UndoableEditEvent(Object source, UndoableEdit edit) { argument
56 myEdit = edit;
60 * Returns the edit value.
62 * @return the UndoableEdit object encapsulating the edit
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DDesktopPeer.java36 * of open, edit, print, browse and mail with the given URL or file, by
73 void edit(File file) throws IOException; method in interface:DesktopPeer
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDesktopPeer.java52 public void edit(File file) throws IOException { method in class:CDesktopPeer
80 throw new IOException("Failed to open, edit or print " + file + ". Error code: " + status);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDesktopPeer.java45 private static String ACTION_EDIT_VERB = "edit";
57 public void edit(File file) throws IOException { method in class:WDesktopPeer
/openjdk7/jdk/src/share/classes/java/awt/
H A DDesktop.java54 * <li>launching a registered application to open, edit or print a
97 * Represents an "edit" action.
98 * @see Desktop#edit(java.io.File)
297 public void edit(File file) throws IOException { method in class:Desktop
304 peer.edit(file);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDesktopPeer.java83 public void edit(File file) throws IOException { method in class:XDesktopPeer
/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DUndoManager.java35 * two ways to add edits to an <code>UndoManager</code>. Add the edit
48 * index of the next edit in that list. The index of the next edit is
51 * of the last significant edit that was undone. When
53 * edit to the last significant edit are undone, in reverse order.
67 * index of the next edit will be 4. Invoking <code>undo</code>
69 * index of the next edit to 3 (edit <i>c</i>), as shown in the following
79 * The last significant edit i
331 undoTo(UndoableEdit edit) argument
347 redoTo(UndoableEdit edit) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1522 * - if edit is TRUE, then the user is editing an existing entry
1525 * - the other reason we need the 'edit' boolean is we need to know
1532 void displayPolicyEntryDialog(boolean edit) { argument
1540 (new EditPrinButtonListener(tool, tw, this, edit));
1545 (new EditPermButtonListener(tool, tw, this, edit));
1553 if (edit) {
1585 tf = (edit ?
1597 tf = (edit ?
1611 (new AddPrinButtonListener(tool, tw, this, edit));
1617 (tool, tw, this, edit));
1837 displayPrincipalDialog(boolean editPolicyEntry, boolean edit) argument
1944 displayPermissionDialog(boolean editPolicyEntry, boolean edit) argument
2824 private boolean edit; field in class:AddEntryDoneButtonListener
2826 AddEntryDoneButtonListener(PolicyTool tool, ToolWindow tw, ToolDialog td, boolean edit) argument
2986 private boolean edit; field in class:NewPolicyPrinOKButtonListener
2988 NewPolicyPrinOKButtonListener(PolicyTool tool, ToolWindow tw, ToolDialog listDialog, ToolDialog infoDialog, boolean edit) argument
3049 private boolean edit; field in class:NewPolicyPermOKButtonListener
3051 NewPolicyPermOKButtonListener(PolicyTool tool, ToolWindow tw, ToolDialog listDialog, ToolDialog infoDialog, boolean edit) argument
3111 private boolean edit; field in class:RemovePrinButtonListener
3113 RemovePrinButtonListener(PolicyTool tool, ToolWindow tw, ToolDialog td, boolean edit) argument
3145 private boolean edit; field in class:RemovePermButtonListener
3147 RemovePermButtonListener(PolicyTool tool, ToolWindow tw, ToolDialog td, boolean edit) argument
[all...]

Completed in 48 milliseconds