]> source.dussan.org Git - vaadin-framework.git/commitdiff
Javadoc updates for @Connect
authorArtur Signell <artur@vaadin.com>
Thu, 12 Apr 2012 10:36:29 +0000 (13:36 +0300)
committerArtur Signell <artur@vaadin.com>
Thu, 12 Apr 2012 10:36:29 +0000 (13:36 +0300)
src/com/vaadin/terminal/gwt/client/ui/UnknownComponentConnector.java
src/com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java

index 54e6043f1bc72adc0656865d73a54fcefeb9acfa..f5709903985e1a42ebc548e0b626dbc872b6cd4a 100644 (file)
@@ -27,7 +27,7 @@ public class UnknownComponentConnector extends AbstractComponentConnector
                 .setCaption(
                         "Widgetset does not contain implementation for "
                                 + getWidget().serverClassName
-                                + ". Check its component connector's @Component mapping, widgetsets "
+                                + ". Check its component connector's @Connect mapping, widgetsets "
                                 + "GWT module description file and re-compile your"
                                 + " widgetset. In case you have downloaded a vaadin"
                                 + " add-on package, you might want to refer to "
index dff6f17667ea73a5686dfdbaf63a25aa7a24734a..6d4289b1735419ccf59455d569e7cdf014864349 100644 (file)
@@ -26,16 +26,16 @@ import com.vaadin.terminal.gwt.client.ComponentConnector;
 import com.vaadin.terminal.gwt.client.Connector;
 import com.vaadin.terminal.gwt.client.ui.Connect;
 import com.vaadin.terminal.gwt.client.ui.Connect.LoadStyle;
-import com.vaadin.terminal.gwt.client.ui.root.RootConnector;
 import com.vaadin.terminal.gwt.client.ui.UnknownComponentConnector;
+import com.vaadin.terminal.gwt.client.ui.root.RootConnector;
 import com.vaadin.terminal.gwt.server.ClientConnector;
 
 /**
  * WidgetMapGenerator's are GWT generator to build WidgetMapImpl dynamically
- * based on {@link Connect} annotations available in workspace. By modifying
- * the generator it is possible to do some fine tuning for the generated
- * widgetset (aka client side engine). The components to be included in the
- * client side engine can modified be overriding {@link #getUsedConnectors()}.
+ * based on {@link Connect} annotations available in workspace. By modifying the
+ * generator it is possible to do some fine tuning for the generated widgetset
+ * (aka client side engine). The components to be included in the client side
+ * engine can modified be overriding {@link #getUsedConnectors()}.
  * <p>
  * The generator also decides how the client side component implementations are
  * loaded to the browser. The default generator is
@@ -43,11 +43,11 @@ import com.vaadin.terminal.gwt.server.ClientConnector;
  * that loads all widget implementation on application initialization. This has
  * been the only option until Vaadin 6.4.
  * <p>
- * This generator uses the loadStyle hints from the {@link Connect}
- * annotations. Depending on the {@link LoadStyle} used, the widget may be
- * included in the initially loaded JavaScript, loaded when the application has
- * started and there is no communication to server or lazy loaded when the
- * implementation is absolutely needed.
+ * This generator uses the loadStyle hints from the {@link Connect} annotations.
+ * Depending on the {@link LoadStyle} used, the widget may be included in the
+ * initially loaded JavaScript, loaded when the application has started and
+ * there is no communication to server or lazy loaded when the implementation is
+ * absolutely needed.
  * <p>
  * The GWT module description file of the widgetset (
  * <code>...Widgetset.gwt.xml</code>) can be used to define the
@@ -155,14 +155,13 @@ public class WidgetMapGenerator extends Generator {
                 .iterator();
         while (iter.hasNext()) {
             Class<? extends ComponentConnector> connectorClass = iter.next();
-            Connect annotation = connectorClass
-                    .getAnnotation(Connect.class);
+            Connect annotation = connectorClass.getAnnotation(Connect.class);
             if (!ClientConnector.class.isAssignableFrom(annotation.value())) {
                 logger.log(
                         Type.WARN,
                         "Connector class "
                                 + annotation.value().getName()
-                                + " defined in @Component annotation is not a subclass of "
+                                + " defined in @Connect annotation is not a subclass of "
                                 + ClientConnector.class.getName()
                                 + ". The component connector "
                                 + connectorClass.getName()