Newer
Older
Algolike / src / main / java / resources / TargetB.java
package resources;

public class TargetB {
    private int value;

    public void setTargetB(int b) {
        this.value = b;
    }

    public int getValue() {
        return value;
    }
}