]> source.dussan.org Git - vaadin-framework.git/commitdiff
Formatted all source files
authorArtur Signell <artur@vaadin.com>
Thu, 28 Jun 2012 07:52:17 +0000 (10:52 +0300)
committerArtur Signell <artur@vaadin.com>
Thu, 28 Jun 2012 13:49:51 +0000 (16:49 +0300)
src/com/vaadin/terminal/gwt/client/JavaScriptConnectorHelper.java
src/com/vaadin/terminal/gwt/client/ui/UnknownComponentConnector.java
src/com/vaadin/tools/WidgetsetCompiler.java
src/com/vaadin/ui/Component.java
tests/server-side/com/vaadin/tests/server/component/table/TableSerialization.java
tests/testbench/com/vaadin/tests/application/ThreadLocalInstances.java
tests/testbench/com/vaadin/tests/components/AbstractTestRoot.java

index bd62a759cbd9adb9677f23035b4ffaf38c24b7fb..f3a3aa3e8340d25103a9b9043cdf9b7a98b245c1 100644 (file)
@@ -238,8 +238,8 @@ public class JavaScriptConnectorHelper {
             return connector;
         }
 
-        return ConnectorMap.get(connector.getConnection())
-                .getConnector(connectorId);
+        return ConnectorMap.get(connector.getConnection()).getConnector(
+                connectorId);
     }
 
     private void fireRpc(String iface, String method,
index 0cccec6481055d2f62fe05c58e45a0aac73d4475..83ac97458e364bda77fd512f0135370ad066ba9b 100644 (file)
@@ -4,7 +4,6 @@
 
 package com.vaadin.terminal.gwt.client.ui;
 
-
 public class UnknownComponentConnector extends AbstractComponentConnector {
 
     @Override
index 407f0e2387f0c6dee0e274f8526141fb391a9cf5..987fd8f7349ad49d8ce6302507c9c0182e76ee13 100644 (file)
@@ -31,7 +31,8 @@ import com.vaadin.terminal.gwt.widgetsetutils.WidgetSetBuilder;
  * included in the classpath, as well as the gwt-dev-[platform].jar and other
  * relevant JARs.
  * 
- * @deprecated with Java 6, can use com.google.gwt.dev.Compiler directly (also in Eclipse plug-in etc.)
+ * @deprecated with Java 6, can use com.google.gwt.dev.Compiler directly (also
+ *             in Eclipse plug-in etc.)
  */
 @Deprecated
 public class WidgetsetCompiler {
index 81e0319880a5ef5f8e1ab87bad82b17df496ebfd..5d05f9d0f292865942b35d968be70e62bc7e168e 100644 (file)
@@ -520,8 +520,8 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
      * <p>
      * Getting a null value is often a problem in constructors of regular
      * components and in the initializers of custom composite components. A
-     * standard workaround is to use {@link Application#getCurrent()}
-     * to retrieve the application instance that the current request relates to.
+     * standard workaround is to use {@link Application#getCurrent()} to
+     * retrieve the application instance that the current request relates to.
      * Another way is to move the problematic initialization to
      * {@link #attach()}, as described in the documentation of the method.
      * </p>
index 44dcd60fa5cf89c71baa9de603ecbc67a72435dc..ee6349093c736b842a1cdc2959da9e963ddb47f6 100644 (file)
@@ -12,8 +12,9 @@ public class TableSerialization extends TestCase {
         Table t = new Table();
         byte[] ser = SerializationUtils.serialize(t);
         Table t2 = (Table) SerializationUtils.deserialize(ser);
-        
+
     }
+
     public void testSerializationWithRowHeaders() {
         Table t = new Table();
         t.setRowHeaderMode(Table.ROW_HEADER_MODE_EXPLICIT);
index fd65adf209ddccb3075eb953f0776f9a2365ee89..eeb866138bd1850f45f66f34e0fb3bb18aad32b2 100644 (file)
@@ -92,8 +92,7 @@ public class ThreadLocalInstances extends AbstractTestApplication {
     }
 
     private void reportCurrentStatus(String phase) {
-        reportStatus(phase, Application.getCurrent(),
-                Root.getCurrent());
+        reportStatus(phase, Application.getCurrent(), Root.getCurrent());
     }
 
     private void reportStatus(String phase, Application application, Root root) {
index 875d2b1df821e11897e2cc621fe011faea55b35e..4355b66e5e1acb1f2c023e6ea897ab05f00ec82b 100644 (file)
@@ -57,8 +57,7 @@ public abstract class AbstractTestRoot extends Root {
     protected abstract Integer getTicketNumber();
 
     protected WebBrowser getBrowser() {
-        ApplicationContext context = Application.getCurrent()
-                .getContext();
+        ApplicationContext context = Application.getCurrent().getContext();
         if (context instanceof AbstractWebApplicationContext) {
             AbstractWebApplicationContext webContext = (AbstractWebApplicationContext) context;
             return webContext.getBrowser();