All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.izforge.izpack.installer.InstallerRequirement Maven / Gradle / Ivy

package com.izforge.izpack.installer;

/**
 * A requirement which has to be fulfilled to start the installer.
 * @author dennis.reil
 *
 */
public class InstallerRequirement
{
    private String condition;
    private String message;
    
    public String getCondition()
    {
        return condition;
    }
    
    public void setCondition(String condition)
    {
        this.condition = condition;
    }
    
    public String getMessage()
    {
        return message;
    }
    
    public void setMessage(String message)
    {
        this.message = message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy