package testsubjects; public class IntWriteBehind { private int m_value; public int getValue() { return m_value; } public void setValue(int value) { this.m_value = value; } }