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

com.talk2object.plum.interaction.rich.field.ImageField Maven / Gradle / Ivy

There is a newer version: 0.1.22
Show newest version
package com.talk2object.plum.interaction.rich.field;

import com.talk2object.plum.input.value.image.Image;

public class ImageField extends InteractiveField {
	private int width = 0;
	private int height = 0;

	public ImageField(String name) {
		super(name, FieldType.IMAGE, Image.class);

	}

	public int getWidth() {
		return width;
	}

	public void setWidth(int width) {
		this.width = width;
	}

	public int getHeight() {
		return height;
	}

	public void setHeight(int height) {
		this.height = height;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy