01: /**
02: * $RCSfile: VAStep.java,v $
03: * @creation 15/03/00
04: * @modification $Date: 2001/04/22 21:21:57 $
05: */package com.memoire.vainstall;
06:
07: /**
08: * @version $Id: VAStep.java,v 1.2 2001/04/22 21:21:57 hfalk Exp $
09: * @author Axel von Arnim
10: */
11:
12: public interface VAStep {
13: public void setInstaller(AbstractInstall setup);
14:
15: public void backAction();
16:
17: public void nextAction();
18:
19: public void cancelAction();
20: }
|