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

za.co.knonchalant.candogram.domain.BaseDetail Maven / Gradle / Ivy

The newest version!
package za.co.knonchalant.candogram.domain;

/**
 * Created by evan on 2016/03/12.
 */
public class BaseDetail {
    private int step;

    public BaseDetail() {
    }

    public BaseDetail(int step) {
        this.step = step;
    }

    public int getStep() {
        return step;
    }

    public void setStep(int step) {
        this.step = step;
    }

    public void nextStep() {
        step++;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy