summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2015-05-22 20:38:35 +0300
committerVaadin Code Review <review@vaadin.com>2015-05-28 14:04:46 +0000
commit9f6cfbce67583dd5c5133d1de5c1fedc58916de0 (patch)
tree9f1db3f95039a0ee5f4d03f0742b2b4f6e27300d /shared
parentfdd6a9d9d00fbb0e94c96226744deab563b1cd63 (diff)
downloadvaadin-framework-9f6cfbce67583dd5c5133d1de5c1fedc58916de0.tar.gz
vaadin-framework-9f6cfbce67583dd5c5133d1de5c1fedc58916de0.zip
Show declarative output for component selected in debug window (#17960)
Change-Id: I975eef2f06db4395925f76e40c044078028b0e66
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java b/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
index cb94a9b081..9ca0a0a1bb 100644
--- a/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
+++ b/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
@@ -47,4 +47,14 @@ public interface DebugWindowServerRpc extends ServerRpc {
*/
public void analyzeLayouts();
+ /**
+ * Sends a request to the server to print a design to the console for the
+ * given component.
+ *
+ * @since
+ * @param connector
+ * the component connector to output a declarative design for
+ */
+ public void showServerDesign(Connector connector);
+
}