/*
* Project: AMODA - Abstract Modeled Application
* Class: de.gulden.framework.amoda.model.interaction.Dialog
* Version: snapshot-beautyj-1.1
*
* Date: 2004-09-29
*
* This is a snapshot version of the AMODA 0.2 development branch,
* it is not released as a seperate version.
* For AMODA, see http://amoda.berlios.de/.
*
* This is licensed under the GNU Lesser General Public License (LGPL)
* and comes with NO WARRANTY.
*
* Author: Jens Gulden
* Email: amoda@jensgulden.de
*/
package de.gulden.framework.amoda.model.interaction;
import de.gulden.framework.amoda.model.option.*;
import java.util.*;
/**
* Class Dialog.
*
* @author Jens Gulden
* @version snapshot-beautyj-1.1
*/
public interface Dialog extends Question {
// ------------------------------------------------------------------------
// --- method ---
// ------------------------------------------------------------------------
public void reset();
} // end Dialog
|