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

com.talk2object.plum.input.value.image.FileImage Maven / Gradle / Ivy

The newest version!
package com.talk2object.plum.input.value.image;

import com.talk2object.plum.input.value.File;

public class FileImage implements Image {
	private File file;

	public FileImage(File file) {
		this.file = file;
	}

	@Override
	public File getFile() {
		return file;
	}

	@Override
	public String toString() {

		return file.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy