Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/actions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5148/src/net/sourceforge/bprocessor/gui/actions
Added Files:
FileNewActionListener.java
Log Message:
- Removed items from the menus
- Implemented File -> New to clear the model
- Changed layout of main window
--- NEW FILE: FileNewActionListener.java ---
//---------------------------------------------------------------------------------
// $Id: FileNewActionListener.java,v 1.1 2005/11/15 19:01:02 henryml Exp $
//
// Copyright (c) 2005 The BProcessor Team (http://bprocessor.sourceforge.net)
// Released under the Lesser GNU Public License v2.1
//---------------------------------------------------------------------------------
package net.sourceforge.bprocessor.gui.actions;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import net.sourceforge.bprocessor.model.Project;
/**
* The FileNewActionListener
*/
public class FileNewActionListener implements ActionListener {
/**
* Constructs the FileNewActionListner
*/
public FileNewActionListener() {
super();
}
/**
* Clears the project
* @param event The event
*/
public void actionPerformed(ActionEvent event) {
Project.getInstance().clear();
}
}
|