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

net.filebot.ant.spk.Icon Maven / Gradle / Ivy

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