
apploader.lib.FileResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apploader-lib Show documentation
Show all versions of apploader-lib Show documentation
Framework for delivering desktop application updates
The newest version!
package apploader.lib;
import java.io.File;
public final class FileResult {
public final File file;
public final boolean isFailCopy;
public final boolean updated;
FileResult(File file, boolean failCopy, boolean updated) {
this.file = file;
this.isFailCopy = failCopy;
this.updated = updated;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy