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

net.sourceforge.plantuml.FileImageData Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml;

import net.sourceforge.plantuml.core.ImageData;
import net.sourceforge.plantuml.security.SFile;

public class FileImageData {
	// ::remove file when __HAXE__

	public static final int ERROR = 400;
	public static final int CRASH = 503;

	private final SFile file;
	private final ImageData imageData;

	public FileImageData(SFile file, ImageData imageData) {
		this.file = file;
		this.imageData = imageData;
	}

	public SFile getFile() {
		return file;
	}

	public ImageData getImageData() {
		return imageData;
	}

	public int getStatus() {
		if (imageData == null) {
			return 0;
		}
		return imageData.getStatus();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy