Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2014-05-22 08:38:51 +0000
committerTom Schindl2014-05-22 08:38:51 +0000
commite4bb9def6b1c4152d6ecea1f16315712ca239880 (patch)
tree1b5d2d216f44f171377d71ff411cc09321a28812
parent5d69f5cefe0ff1b0f9731024d8c0dd8b8fd2ecf0 (diff)
downloadorg.eclipse.rap.incubator.e4-e4bb9def6b1c4152d6ecea1f16315712ca239880.tar.gz
org.eclipse.rap.incubator.e4-e4bb9def6b1c4152d6ecea1f16315712ca239880.tar.xz
org.eclipse.rap.incubator.e4-e4bb9def6b1c4152d6ecea1f16315712ca239880.zip
Bug 435477 - [e4] Add missing serialVersionUID
-rw-r--r--bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/KeyAssistDialog.java10
-rw-r--r--bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/CancelOnModifyListener.java4
-rw-r--r--bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java4
-rw-r--r--bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/OutOfOrderListener.java5
4 files changed, 23 insertions, 0 deletions
diff --git a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/KeyAssistDialog.java b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/KeyAssistDialog.java
index a399403..b511093 100644
--- a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/KeyAssistDialog.java
+++ b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/KeyAssistDialog.java
@@ -55,6 +55,11 @@ import org.eclipse.swt.widgets.TableItem;
public class KeyAssistDialog extends PopupDialog {
/**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+
+ /**
* The data key for the binding stored on an SWT widget. The key is a fully-qualified name, but
* in reverse order. This is so that the equals method will detect misses faster.
*/
@@ -356,6 +361,11 @@ public class KeyAssistDialog extends PopupDialog {
* If you double-click on the table, it should execute the selected command.
*/
completionsTable.addListener(SWT.DefaultSelection, new Listener() {
+ /**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+
@Override
public void handleEvent(Event event) {
executeKeyBinding(event);
diff --git a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/CancelOnModifyListener.java b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/CancelOnModifyListener.java
index 50dbb33..49c4d4b 100644
--- a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/CancelOnModifyListener.java
+++ b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/CancelOnModifyListener.java
@@ -24,6 +24,10 @@ import org.eclipse.swt.widgets.Widget;
final class CancelOnModifyListener implements Listener {
/**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+ /**
* The listener to remove when this listener catches any event. This value should not be
* <code>null</code>.
*/
diff --git a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java
index 52bb1ec..beaa383 100644
--- a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java
+++ b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java
@@ -67,6 +67,10 @@ public class KeyBindingDispatcher {
public final class KeyDownFilter implements Listener {
/**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+ /**
* Whether the filter is enabled.
*/
private transient boolean enabled = true;
diff --git a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/OutOfOrderListener.java b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/OutOfOrderListener.java
index 28d3cbc..b24f427 100644
--- a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/OutOfOrderListener.java
+++ b/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/OutOfOrderListener.java
@@ -24,6 +24,11 @@ import org.eclipse.swt.widgets.Widget;
*/
final class OutOfOrderListener implements Listener {
/**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+
+ /**
* The time at which this listener was last registered to an event. This is the
* <code>event.time</code> value.
*

Back to the top