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