KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > memoire > vainstall > VAInstallStep


1 /**
2  * $RCSfile: VAInstallStep.java,v $
3  * @creation 15/03/00
4  * @modification $Date: 2001/03/30 21:25:38 $
5  */

6
7 package com.memoire.vainstall;
8
9 /**
10  * @version $Id: VAInstallStep.java,v 1.1.1.1 2001/03/30 21:25:38 vonarnim Exp $
11  * @author Axel von Arnim
12  */

13
14 public interface VAInstallStep
15 extends VAStep
16 {
17   public void details(String JavaDoc msg);
18   public void status(String JavaDoc msg);
19   public void setProgression(int percent);
20   public int getProgression();
21 }
22
Popular Tags