*/
@SupportedAnnotationTypes("com.gwtplatform.dispatch.annotation.GenProxy")
public class GenProxyProcessor extends GenProcessor {
@Override
public void process(final Element proxyElement) {
GenProxy genProxy = proxyElement.getAnnotation(GenProxy.class);
generateProxy(
proxyElement,
genProxy.targetPackage(),
genProxy.filterSetter(),
genProxy.filterGetter(),
genProxy.isEmbeddedType(),
getLocatorTypeMirror(genProxy)
);
}