io.imunity.vaadin.endpoint.common.plugins.attributes.ext.MinMaxBindingValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-vaadin-endpoint-common Show documentation
Show all versions of unity-server-vaadin-endpoint-common Show documentation
Common Vaadin endpoint components
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