Quellcode durchsuchen

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 vor 6 Jahren
Ursprung
Commit
4b9e102a2e
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      documentation/articles/UsingRPCToSendEventsToTheClient.asciidoc

+ 2
- 2
documentation/articles/UsingRPCToSendEventsToTheClient.asciidoc Datei anzeigen

@@ -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");
}
};


Laden…
Abbrechen
Speichern