01: package com.memoire.vainstall;
02:
03: /**
04: * @version $Id: VALicenseKeyStep.java,v 1.1 2002/06/05 16:47:08 deniger Exp $
05: * @author Constantine A. Plotinikov
06: */
07:
08: public interface VALicenseKeyStep extends VAStep {
09: /** inisialize step with license key support info
10: * @param lks license key support */
11: public void setLicenseKeySupport(LicenseKeySupport lks);
12:
13: /** get license info from step and validate fields
14: * @param lks license key support
15: * @return true if data were validated */
16: public boolean getGetFields(LicenseKeySupport lks);
17: }
|