All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nz.ac.waikato.modeljunit.command.UndoInterface Maven / Gradle / Ivy

Go to download

A tool for editing test parameters and suggesting additional parameter values. It provides several heuristics (including PairWise and MC/DC) for analyzing a set of input tuples and suggesting missing/extra values.

The newest version!
package nz.ac.waikato.modeljunit.command;

import javax.swing.Action;

import nz.ac.waikato.modeljunit.storytest.Subject;

public interface UndoInterface
   extends Subject
{
   /**
    * Executes the Command c and add it to the UndoManager if it is Undoable
    */
   public void execute(Command c);
   
   public void undo();
   
   public void redo();
   
   public boolean canUndo();
   
   public boolean canRedo();
   
   public Action getUndoAction();
   
   public Action getRedoAction();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy