TileMangler/src/tm/reversibleaction/ReversibleAddBookmarkAction...

53 lines
1.4 KiB
Java

/*
*
* Copyright (C) 2003 Kent Hansen.
*
* This file is part of Tile Mangler.
*
* Tile Mangler is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Tile Mangler is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
package tm.reversibleaction;
import tm.treenodes.*;
/**
*
* Allows undo/redo of a bookmark addition.
*
**/
public class ReversibleAddBookmarkAction extends ReversibleAction {
private BookmarkItemNode bookmark;
private FolderNode folder;
public ReversibleAddBookmarkAction(BookmarkItemNode bookmark) {
super("Add Bookmark"); // i18n
this.bookmark = bookmark;
this.folder = (FolderNode)bookmark.getParent();
}
public void undo() {
folder.remove(bookmark);
// ui.buildBookmarksMenu();
}
public void redo() {
folder.add(bookmark);
// ui.buildBookmarksMenu();
}
public boolean canUndo() { return true; }
public boolean canRedo() { return true; }
}