
net.filebot.ant.spk.Icon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ant-spk Show documentation
Show all versions of ant-spk Show documentation
Ant Task for creating SPK packages for Synology NAS
The newest version!
package net.filebot.ant.spk;
import java.io.File;
public class Icon {
Integer size;
File file;
public void setSize(Integer size) {
this.size = size;
}
public void setFile(File file) {
this.file = file;
}
public String getPackageName() {
if (size == null || size.equals(64) || size.equals(72)) {
return "PACKAGE_ICON.PNG";
} else {
return "PACKAGE_ICON_" + size + ".PNG";
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy