/***************************************************
 * Copyright 2007 by Simran Gleason                *
 * This program is distributed under the terms     *
 * of the GNU General Public License.              *
 * See kepler.Kepler.LICENSE_TEXT or               *
 * http://www.gnu.org/licenses/gpl.txt             *
 ***************************************************/

package kepler;

public class Action {
    public String name;
    public Action() {
    }

    public void setName(String val) {
        this.name = val;
    }
    public String getName() {
        return this.name;
    }
}
