We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.util.
Class ConnectorHelper
- java.lang.Object
-
- com.vaadin.util.ConnectorHelper
-
public class ConnectorHelper extends Object
Provides various helper methods for connectors. Meant for internal use.
Since:
7.1
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description static String
getDebugInformation(ClientConnector connector)
Creates a string containing debug info for the connector.
static void
writeHierarchyInformation(ClientConnector connector, StringBuilder builder)
Creates a string containing hierarchy information for the connector.
-
-
-
Method Detail
-
getDebugInformation
public static String getDebugInformation(ClientConnector connector)
Creates a string containing debug info for the connector.
Parameters:
connector
- The connector to print debug info aboutReturns:
A string with debug information
Since:
7.1
-
writeHierarchyInformation
public static void writeHierarchyInformation(ClientConnector connector, StringBuilder builder)
Creates a string containing hierarchy information for the connector.
Parameters:
connector
- The connector to get hierarchy information forbuilder
- The StringBuilder where the information should be writtenSince:
7.1
-
-