]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed extra serialVersionUIDs
authorArtur Signell <artur.signell@itmill.com>
Thu, 18 Mar 2010 15:20:03 +0000 (15:20 +0000)
committerArtur Signell <artur.signell@itmill.com>
Thu, 18 Mar 2010 15:20:03 +0000 (15:20 +0000)
svn changeset:11974/svn branch:6.3

src/com/vaadin/event/dd/DragAndDropEvent.java
src/com/vaadin/terminal/gwt/client/ui/VNotification.java
src/com/vaadin/terminal/gwt/server/DragAndDropService.java
src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java
src/com/vaadin/ui/CssLayout.java
src/com/vaadin/ui/DefaultFieldFactory.java
src/com/vaadin/ui/DragAndDropWrapper.java
src/com/vaadin/ui/LoginForm.java
src/com/vaadin/ui/Tree.java

index 275e2127015e25b67be584e06921cd3e1b3429c2..d2b971a689a64e0981205403cee059da42c4d854 100644 (file)
@@ -23,7 +23,6 @@ import com.vaadin.event.dd.acceptCriteria.AcceptCriterion;
  * 
  */
 public class DragAndDropEvent implements Serializable {
-    private static final long serialVersionUID = -2232591107911385564L;
     private Transferable transferable;
     private DropTargetDetails dropTargetDetails;
 
index e5c8be92e58d177684b868fbe6f47361065122ec..2aaec75453e90b12e21b75913c71bb70c1158a48 100644 (file)
@@ -316,7 +316,6 @@ public class VNotification extends VOverlay {
     }\r
 \r
     public class HideEvent extends EventObject {\r
-        private static final long serialVersionUID = 4428671753988459560L;\r
 \r
         public HideEvent(Object source) {\r
             super(source);\r
index a314ebc967c1c088e5805a338482bb65e5cdd8af..f639e57e49a9b44d972f8ea54475eab59a5123b7 100644 (file)
@@ -22,8 +22,6 @@ import com.vaadin.ui.Component;
 
 public class DragAndDropService implements VariableOwner {
 
-    private static final long serialVersionUID = -4745268869323400203L;
-
     private int lastVisitId;
 
     private int currentEventId;
index d6ba788ee39a1ffec65470972897195f4129006d..0b84990508217a01cfbd006585c89de5e875a0f9 100644 (file)
@@ -95,8 +95,6 @@ import com.vaadin.service.ApplicationContext;
  */
 public class GAEApplicationServlet extends ApplicationServlet {
 
-    private static final long serialVersionUID = 2179597952818898526L;
-
     private static final Logger log = Logger
             .getLogger(GAEApplicationServlet.class.getName());
 
index 069d274080e07976a229aa387ef9ef3e32a09a52..59d13c137f88243d29de602b59623dcec976fa09 100644 (file)
@@ -60,8 +60,6 @@ import com.vaadin.terminal.gwt.client.ui.VCssLayout;
 @ClientWidget(VCssLayout.class)
 public class CssLayout extends AbstractLayout {
 
-    private static final long serialVersionUID = -6408703812053460073L;
-
     private static final String CLICK_EVENT = VCssLayout.CLICK_EVENT_IDENTIFIER;
 
     /**
index aa8bd794f64af5fae8239da714f0b3ab7fd644a7..dda5de1aa5adefa8497340b17989f4de69eb0975 100644 (file)
@@ -35,8 +35,6 @@ public class DefaultFieldFactory implements FormFieldFactory, TableFieldFactory
     protected DefaultFieldFactory() {
     }
 
-    private static final long serialVersionUID = -8051489865928478009L;
-
     public Field createField(Item item, Object propertyId, Component uiContext) {
         Class<?> type = item.getItemProperty(propertyId).getType();
         Field field = createFieldByPropertyType(type);
index 685234a23914bd9b939c643bcbd5f15edcec8571..a9089443ecd70eeb93a5ab824c984aba55de7aca 100644 (file)
@@ -126,11 +126,6 @@ public class DragAndDropWrapper extends CustomComponent implements DropTarget,
 
     public class WrapperDropDetails extends DropTargetDetailsImpl {
 
-        /**
-         * 
-         */
-        private static final long serialVersionUID = 1L;
-
         public WrapperDropDetails(Map<String, Object> rawDropData) {
             super(rawDropData, DragAndDropWrapper.this);
         }
@@ -207,10 +202,6 @@ public class DragAndDropWrapper extends CustomComponent implements DropTarget,
         }
     }
 
-    /**
-     * 
-     */
-    private static final long serialVersionUID = 1L;
     private DropHandler dropHandler;
 
     public DropHandler getDropHandler() {
index 330a108db4aa1130f1258acb9015ffdced3a3653..4505044a2422d84d71e50c155bc309a47f90705c 100644 (file)
@@ -40,14 +40,10 @@ import com.vaadin.terminal.gwt.client.ApplicationConnection;
  */
 public class LoginForm extends CustomComponent {
 
-    private static final long serialVersionUID = 4081792750778351702L;
-
     private Embedded iframe = new Embedded();
 
     private ApplicationResource loginPage = new ApplicationResource() {
 
-        private static final long serialVersionUID = 1L;
-
         public Application getApplication() {
             return LoginForm.this.getApplication();
         }
@@ -76,8 +72,6 @@ public class LoginForm extends CustomComponent {
 
     private ParameterHandler paramHandler = new ParameterHandler() {
 
-        private static final long serialVersionUID = 1L;
-
         public void handleParameters(Map<String, String[]> parameters) {
             if (parameters.containsKey("username")) {
                 getWindow().addURIHandler(uriHandler);
@@ -97,7 +91,6 @@ public class LoginForm extends CustomComponent {
     };
 
     private URIHandler uriHandler = new URIHandler() {
-        private static final long serialVersionUID = 1L;
         private final String responce = "<html><body>Login form handeled."
                 + "<script type='text/javascript'>top.vaadin.forceSync();"
                 + "</script></body></html>";
@@ -205,7 +198,6 @@ public class LoginForm extends CustomComponent {
      */
     public class LoginEvent extends Event {
 
-        private static final long serialVersionUID = 1L;
         private Map<String, String> params;
 
         private LoginEvent(Map<String, String> params) {
index 29315864bd721d938bd5a47c4224813a097f0f22..b1e076ea28e7a4bebb7ae311e3d7c0591019dcc5 100644 (file)
@@ -1370,8 +1370,6 @@ public class Tree extends AbstractSelect implements Container.Hierarchical,
      */
     public static class OverFolderNode extends DropTargetDetailEquals {
 
-        private static final long serialVersionUID = 1L;
-
         public OverFolderNode() {
             super("itemIdOverIsNode", Boolean.TRUE);
         }
@@ -1442,8 +1440,6 @@ public class Tree extends AbstractSelect implements Container.Hierarchical,
             this.depthToCheck = depthToCheck;
         }
 
-        private static final long serialVersionUID = 1L;
-
         public boolean accepts(DragAndDropEvent dragEvent) {
             try {
                 TreeDropTargetDetails eventDetails = (TreeDropTargetDetails) dragEvent