Searched refs:edit (Results 1 - 17 of 17) sorted by relevance

/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/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/test/java/awt/MenuBar/DeadlockTest1/
H A DDeadlockTest1.java41 Menu edit = new Menu("Edit");
52 edit.add(copy);
53 edit.add(paste);
55 menubar.add(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/share/demo/jfc/Metalworks/
H A DMetalworksFrame.java111 JMenu edit = buildEditMenu();
141 menuBar.add(edit);
184 JMenu edit = new JMenu("Edit");
203 edit.add(undo);
204 edit.addSeparator();
205 edit.add(cut);
206 edit.add(copy);
207 edit.add(paste);
208 edit.addSeparator();
209 edit
[all...]
/openjdk7/jdk/make/java/nio/
H A DgenCharsetProvider.sh55 // -- This file was mechanically generated: Do not edit! -- //
H A DgenExceptions.sh48 // -- This file was mechanically generated: Do not edit! -- //
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java1037 boolean edit = false;
1062 edit = true;
1084 edit = true;
1097 edit = true;
1106 edit = true;
1113 return edit ? xsf.newstr(new String(buf, start, d - start)) : this;
H A DXStringForFSB.java863 boolean edit = false;
879 edit = true;
901 edit = true;
914 edit = true;
923 edit = true;
930 return edit ? xsf.newstr(buf, start, d - start) : this;
/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/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/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...]
/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/share/classes/javax/swing/text/
H A DStringContent.java122 UndoableEdit edit = new RemoveUndo(where, removedString);
127 return edit;
H A DGapContent.java150 UndoableEdit edit = new RemoveUndo(where, removedString);
152 return edit;
H A DDefaultStyledDocument.java362 // do not fire UndoabeEdit event for composed text edit (unsupported)
440 StyleChangeUndoableEdit edit = new StyleChangeUndoableEdit((AbstractElement)paragraph, s);
446 e.addEdit(edit);
1426 * @param de the event capturing this edit
1505 * @param de the event capturing this edit
1518 * @param de the event capturing this edit
1583 // Make sure an edit is going to be created for each of the

Completed in 81 milliseconds