blob: ba25fb43851d5038161f0ca83c46333e2520053b [file] [log] [blame]
package testsubjects;
import testannotations.Property;
public class AccessorsAlreadyExistSubject2
{
@Property
private int value;
public String getValue()
{
return String.valueOf(value);
}
}