Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 418 → Rev 419

/sun/xmleditor/trunk/src/control/OtherGUIActions.java
1,22 → 1,28
package src.control;
 
/** TODO JavaDoc-comments
/*
* This file contains the OtherGUIActions class.
*
* @author Holgerchen
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.34 $
*
* This class handels Gui operations that can't be placed in another class
* Last modification: $Date: 2003/07/13 14:57:49 $
*/
 
package src.control;
 
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
 
import javax.swing.JFrame;
import javax.swing.JOptionPane;
 
// TODO JavaDoc class description
public class OtherGUIActions implements ActionListener
{
 
/** Empty constructor
/**
* Empty constructor
*/
public OtherGUIActions() {
}
23,7 → 29,6
 
/**
* Method needed by ActionListener.
*
*/
public void actionPerformed(ActionEvent e) {
34,10 → 39,11
}
}
/** quitConfirmed asks the user if he/she wants to leave to program.
/**
* quitConfirmed asks the user if he/she wants to leave to program.
*
* @return A boolean value indicating if the exit procedure has been confirmed.
* <code>true<code> if user confirms, <code>false<code> otherwise.
* @return A boolean value indicating if the exit procedure has been confirmed.
* <code>true<code> if user confirms, <code>false<code> otherwise.
*
*/
// TODO comments