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

de.schlichtherle.license.wizard.LicenseInstalledEvent Maven / Gradle / Ivy

Go to download

Provides an internationalized wizard dialog used to install, verify and uninstall license keys.

The newest version!
/*
 * Copyright (C) 2005-2015 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package de.schlichtherle.license.wizard;
import de.schlichtherle.license.LicenseContent;

/**
 * Fired when a license certificate has been successfully installed.
 *
 * @author Christian Schlichtherle
 */
public class LicenseInstalledEvent extends java.util.EventObject {
    private static final long serialVersionUID = 1L;
    
    private final LicenseContent content;
    
    /**
     * Creates a new instance of LicenseInstalledEvent.
     *
     * @param content The license content that has been successfully installed.
     */
    public LicenseInstalledEvent(Object source, LicenseContent content) {
        super(source);
        this.content = content;
    }
    
    public LicenseContent getContent() {
        return content;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy