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

io.imunity.vaadin.endpoint.common.plugins.attributes.ext.MinMaxBindingValue Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package io.imunity.vaadin.endpoint.common.plugins.attributes.ext;


public class MinMaxBindingValue
{
	private T min;
	private T max;

	public T getMin()
	{
		return min;
	}
	public void setMin(T min)
	{
		this.min = min;
	}
	public T getMax()
	{
		return max;
	}
	public void setMax(T max)
	{
		this.max = max;
	}	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy