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

net.sf.aguacate.model.FieldStaticDateTime Maven / Gradle / Ivy

There is a newer version: 0.10.9
Show newest version
package net.sf.aguacate.model;

import java.util.Date;

public class FieldStaticDateTime extends FieldDateTime {

	private final Date minValue;

	private final Date maxValue;

	public FieldStaticDateTime(String name, FieldType type, boolean optional, Date minValue, Date maxValue) {
		super(name, type, optional);
		this.minValue = minValue;
		this.maxValue = maxValue;
	}

	public Date getMinValue() {
		return minValue;
	}

	public Date getMaxValue() {
		return maxValue;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy