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