blob: 5bfbf175da9ed4d1143cda2cb37d5cc8f4ffaec1 [file] [log] [blame]
package testsubjects;
public class LongWriteBehind
{
private long m_value;
public long getValue()
{
return m_value;
}
public void setValue(long value)
{
this.m_value = value;
}
}