01: /*
02: * Gruntspud
03: *
04: * Copyright (C) 2002 Brett Smith.
05: *
06: * Written by: Brett Smith <t_magicthize@users.sourceforge.net>
07: *
08: * This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public
09: * License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
10: * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
12: *
13: * You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free
14: * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
15: */
16:
17: package gruntspud.actions;
18:
19: import gruntspud.Constants;
20: import gruntspud.ResourceUtil;
21: import gruntspud.ui.UIUtil;
22:
23: import java.util.ResourceBundle;
24:
25: public abstract class AbstractNormalAddAction extends
26: AbstractGruntspudAction {
27: static ResourceBundle res = ResourceBundle
28: .getBundle("gruntspud.actions.ResourceBundle");
29:
30: /**
31: * Constructor for the AbstractNormalAddAction object
32: */
33: public AbstractNormalAddAction() {
34: super (res, "abstractNormalAddAction");
35: putValue(ICON, UIUtil
36: .getCachedIcon(Constants.ICON_TOOL_NORMAL_ADD));
37: }
38: }
|