Searched defs:addEdit (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DUndoableEdit.java42 * <code>addEdit</code> on the current edit passing in the new edit
43 * as the argument. If <code>addEdit</code> returns true the
46 * Edits can use <code>addEdit</code> as a way for smaller edits to
48 * <li>If <code>addEdit</code> returns false <code>replaceEdit</code>
50 * argument. This is the inverse of <code>addEdit</code> &#151;
59 * next significant edit. <code>addEdit</code> and
64 * can also be done using the <code>addEdit</code> method.
122 * override <code>addEdit</code> to return true when the edits may
142 public boolean addEdit(UndoableEdit anEdit); method in interface:UndoableEdit
149 * (<code>addEdit</cod
[all...]
H A DAbstractUndoableEdit.java90 * another edit's <code>addEdit</code> or <code>replaceEdit</code>
167 * @see UndoableEdit#addEdit
169 public boolean addEdit(UndoableEdit anEdit) { method in class:AbstractUndoableEdit
H A DCompoundEdit.java114 * is given a chance to <code>addEdit(anEdit)</code>.
124 public boolean addEdit(UndoableEdit anEdit) { method in class:CompoundEdit
138 else if (!last.addEdit(anEdit)) {
H A DUndoManager.java36 * directly using the <code>addEdit</code> method, or add the
105 * (<code><i>c</i>.addEdit(<i>e</i>)</code> returns true), or replaced
155 * @see #addEdit
274 * @see #addEdit
495 * @see CompoundEdit#addEdit
497 public synchronized boolean addEdit(UndoableEdit anEdit) { method in class:UndoManager
504 retVal = super.addEdit(anEdit);
604 * <code>addEdit</code> with <code>e.getEdit()</code>.
608 * @see #addEdit
611 addEdit(
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractDocument.java618 chng.addEdit(u);
728 e.addEdit(u);
1165 chng.addEdit( ee );
2745 public boolean addEdit(UndoableEdit anEdit) { method in class:AbstractDocument.DefaultDocumentEvent
2766 return super.addEdit(anEdit);

Completed in 162 milliseconds