summaryrefslogtreecommitdiffstats
path: root/client-compiler/src
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2015-01-13 21:55:26 +0200
committerVaadin Code Review <review@vaadin.com>2015-01-13 20:15:00 +0000
commit8e17afda2ec060f56da0626fb40b088670777e8c (patch)
treedc78c93c4739198daba52efe293b20f0bf42acf3 /client-compiler/src
parent2fd0f18ec8362a23bf48069c64270344782e8eea (diff)
downloadvaadin-framework-8e17afda2ec060f56da0626fb40b088670777e8c.tar.gz
vaadin-framework-8e17afda2ec060f56da0626fb40b088670777e8c.zip
Rename BackgroundMessage -> NoLoadingIndicator (#15373)
Change-Id: Icc25e5727880baa9dceba3394522b3c5b3a4314f
Diffstat (limited to 'client-compiler/src')
-rw-r--r--client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java b/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java
index 7efdf9db81..86ece28041 100644
--- a/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java
+++ b/client-compiler/src/com/vaadin/server/widgetsetutils/metadata/ServerRpcVisitor.java
@@ -24,7 +24,7 @@ import com.google.gwt.core.ext.typeinfo.JClassType;
import com.google.gwt.core.ext.typeinfo.JMethod;
import com.google.gwt.core.ext.typeinfo.JType;
import com.vaadin.client.metadata.TypeDataStore.MethodAttribute;
-import com.vaadin.shared.annotations.BackgroundMessage;
+import com.vaadin.shared.annotations.NoLoadingIndicator;
import com.vaadin.shared.annotations.Delayed;
public class ServerRpcVisitor extends TypeVisitor {
@@ -52,9 +52,9 @@ public class ServerRpcVisitor extends TypeVisitor {
}
}
- if (method.getAnnotation(BackgroundMessage.class) != null) {
+ if (method.getAnnotation(NoLoadingIndicator.class) != null) {
bundle.setMethodAttribute(type, method,
- MethodAttribute.BACKGROUND_MESSAGE);
+ MethodAttribute.NO_LOADING_INDICATOR);
}
bundle.setNeedsParamTypes(type, method);