Package com.vaadin.shared.ui.ui
Interface DebugWindowServerRpc
-
- All Superinterfaces:
Serializable,ServerRpc
public interface DebugWindowServerRpc extends ServerRpc
Server RPC methods for the Debug Window.- Since:
- 7.1
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidanalyzeLayouts()Invokes the layout analyzer on the servervoidshowServerDebugInfo(Connector connector)Sends a request to the server to print details to console that will help the developer to locate the corresponding server-side connector in the source code.voidshowServerDesign(Connector connector)Sends a request to the server to print a design to the console for the given component.
-
-
-
Method Detail
-
showServerDebugInfo
void showServerDebugInfo(Connector connector)
Sends a request to the server to print details to console that will help the developer to locate the corresponding server-side connector in the source code.- Parameters:
connector- the connector to locate- Since:
- 7.1
-
analyzeLayouts
void analyzeLayouts()
Invokes the layout analyzer on the server- Since:
- 7.1
-
showServerDesign
void showServerDesign(Connector connector)
Sends a request to the server to print a design to the console for the given component.- Parameters:
connector- the component connector to output a declarative design for- Since:
- 7.5
-
-