Port of schuchert.wikispaces.com


TddAndConcurrency.ObjectWithValue

TddAndConcurrency.ObjectWithValue
package com.om.sharingwithoutguarding;

public class ObjectWithValue {
    private int value;

    public void incrementValue() {
        ++value;
    }

    public int getValue() {
        return value;
    }
}

Comments

" Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.