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

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

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

import java.util.Date;

import com.talk2object.plum.view._abstract.components.DateTimePickerMode;

public class DateField extends InteractiveField {

	private String format;
	private DateTimePickerMode mode;

	public DateField(String name) {
		super(name, FieldType.DATE, Date.class);

	}

	public String getFormat() {
		return format;
	}

	public void setFormat(String format) {
		this.format = format;
	}

	public DateTimePickerMode getMode() {
		return mode;
	}

	public void setMode(DateTimePickerMode mode) {
		this.mode = mode;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy