Initial commit, a stable version.
[bnac-editor.git] / src / cl.uchile.dcc.bnac.editor / ProjectCommand.java
blob712dc71424275558b22da62dbc263b642a3e9221
1 /*
2 * bnac : virtual museum environment creation/manipulation project
3 * Copyright (C) 2010 Felipe CaƱas Sabat
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 package cl.uchile.dcc.bnac.editor;
21 abstract public class ProjectCommand
23 protected Project project;
24 protected String name;
26 public ProjectCommand (Project project, String name)
28 this.project = project;
29 this.name = name;
32 public Project getProject () { return project; }
33 public String getName () { return name; }
35 abstract public void execute ();
36 abstract public void undo ();