/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package LOGIC; import java.io.Serializable; /** * * @author sarah */ public class IntervalType extends Type implements Serializable{ private int mim; private int max; public int getMim() { return mim; } public void setMim(int mim) { this.mim = mim; } public int getMax() { return max; } public void setMax(int max) { this.max = max; } public IntervalType(int mim, int max){ this.mim = mim; this.max = max; } }