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

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

package com.talk2object.plum.interaction.rich.field;

import java.util.Date;

import com.talk2object.plum.view.component.DateTimePickerMode;

public class DateField extends InteractiveField {

	private String format;
	private DateTimePickerMode mode;

	public DateField(String name, CollectionType complexValueType) {
		super(name, Date.class, ValueType.DATE, complexValueType);

	}

	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