de.schlichtherle.license.wizard.LicenseInstalledEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truelicense-swing Show documentation
Show all versions of truelicense-swing Show documentation
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