有没有办法可以将非 setter/getter 方法放入我们定义的代理接口中?
例如..
@ProxyFor( value = requestFactory.example.gwt.server.domain.Person.class )
public interface PersonProxy extends EntityProxy
{
String getLastName();
String getFirstName();
void setLastName( String nachname );
void setFirstName( String vorname );
public Long getId();
public Integer getVersion();
void setProperty(String name, Object value);
}
上面示例中的最后一个方法抛出异常“仅允许设置器和获取器”。有什么办法可以解决这个问题?提前致谢。