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

org.openpnp.capture.PropertyLimits Maven / Gradle / Ivy

There is a newer version: 0.0.28-0
Show newest version
package org.openpnp.capture;

public class PropertyLimits {
    private int min;
    private int max;
    
    public PropertyLimits(int min, int max) {
        this.min = min;
        this.max = max;
    }

    public int getMin() {
        return min;
    }

    public void setMin(int min) {
        this.min = min;
    }

    public int getMax() {
        return max;
    }

    public void setMax(int max) {
        this.max = max;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy