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

org.drools.benchmark.model.B Maven / Gradle / Ivy

There is a newer version: 7.36.1.Final
Show newest version
package org.drools.benchmark.model;

public class B {

    private boolean b;
    private int i;
    private int j;

    public B(int i) {
        this(i, i);
    }

    public B(int i, int j) {
        this.i = i;
        this.j = j;
    }

    public B(int i, int j, boolean b) {
        this.i = i;
        this.j = j;
        this.b = b;
    }

    public int getI() {
        return i;
    }

    public void setI(int i) {
        this.i = i;
    }

    public int getJ() {
        return j;
    }

    public void setJ(int j) {
        this.j = j;
    }

    public boolean isB() {
        return b;
    }

    public void setB(boolean b) {
        this.b = b;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy