Procházet zdrojové kódy

Update Using RPC To Send Events To The Client

Update the article to make it compile, if using right imports

Addresses : https://github.com/vaadin/framework/issues/10439
tags/8.5.0.alpha1
Anastasia Smirnova před 6 roky
rodič
revize
4b9e102a2e

+ 2
- 2
documentation/articles/UsingRPCToSendEventsToTheClient.asciidoc Zobrazit soubor

@@ -33,7 +33,7 @@ We'll create *MyComponentClientRpc* in the client package:
....
package com.example.mycomponent.client;

import com.vaadin.client.communication.ClientRpc;
import com.vaadin.shared.communication.ClientRpc;

public interface MyComponentClientRpc extends ClientRpc {
public void alert(String message);
@@ -121,7 +121,7 @@ public class MyComponent extends AbstractComponent {
"Ok, that's enough!");
}

setText("You have clicked " + clickCount + " times");
// setText("You have clicked " + clickCount + " times");
}
};


Načítá se…
Zrušit
Uložit