KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.memoire.vainstall;
2
3 /**
4  * @version $Id: VALicenseKeyStep.java,v 1.1 2002/06/05 16:47:08 deniger Exp $
5  * @author Constantine A. Plotinikov
6  */

7
8 public interface VALicenseKeyStep
9 extends VAStep
10 {
11   /** inisialize step with license key support info
12    * @param lks license key support */

13   public void setLicenseKeySupport(LicenseKeySupport lks);
14   /** get license info from step and validate fields
15    * @param lks license key support
16    * @return true if data were validated */

17   public boolean getGetFields(LicenseKeySupport lks);
18 }
19
Popular Tags