blob: 8ee290a11d8bacf544f49f8c4abb3316393c9729 [file] [log] [blame]
package testsubjects;
public class IntWriteBehind
{
private int m_value;
public int getValue()
{
return m_value;
}
public void setValue(int value)
{
this.m_value = value;
}
}