blob: 1e0082f9582e1a7e9f9de36cd5c1e81c55662958 [file] [log] [blame]
package testsubjects;
import java.util.concurrent.atomic.AtomicReference;
import testannotations.Property;
public class GenericCreateAccessorsSubject
{
@Property
private AtomicReference<String> m_ref;
public String getRefValue()
{
return m_ref.get();
}
}