Lines Matching refs:last
81 * Returns the last <code>UndoableEdit</code> in
113 * <p>The last edit added to this <code>CompoundEdit</code>
116 * given a chance to <code>replaceEdit</code> the last edit.
128 UndoableEdit last = lastEdit();
131 // Otherwise, give the last one a chance to absorb the new
133 // the last one.
135 if (last == null) {
138 else if (!last.addEdit(anEdit)) {
139 if (anEdit.replaceEdit(last)) {
207 * last <code>UndoableEdit</code> added to
212 UndoableEdit last = lastEdit();
213 if (last != null) {
214 return last.getPresentationName();
222 * from the last <code>UndoableEdit</code>
227 UndoableEdit last = lastEdit();
228 if (last != null) {
229 return last.getUndoPresentationName();
237 * from the last <code>UndoableEdit</code>
242 UndoableEdit last = lastEdit();
243 if (last != null) {
244 return last.getRedoPresentationName();