Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2007-10-22 15:01:58 +0000
committerDani Megert2007-10-22 15:01:58 +0000
commit3c128b11e463927bf9522892601f642f79297e87 (patch)
tree8adb4a4acccab9e5c64377ccabe36ab243c4f663 /org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java
parenteacd9956cc22fff4ffe00f720259e8dcc9875b85 (diff)
downloadeclipse.platform.text-3c128b11e463927bf9522892601f642f79297e87.tar.gz
eclipse.platform.text-3c128b11e463927bf9522892601f642f79297e87.tar.xz
eclipse.platform.text-3c128b11e463927bf9522892601f642f79297e87.zip
Fixed warning.
Diffstat (limited to 'org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java')
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java b/org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java
index 86a6739f4ec..0faee480f31 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/SearchResultEvent.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -22,6 +22,10 @@ import java.util.EventObject;
* @since 3.0
*/
public abstract class SearchResultEvent extends EventObject {
+
+ private static final long serialVersionUID= -4877459368182725252L;
+
+
/**
* Creates a new search result event for the given search result.
*
@@ -30,6 +34,7 @@ public abstract class SearchResultEvent extends EventObject {
protected SearchResultEvent(ISearchResult searchResult) {
super(searchResult);
}
+
/**
* Gets the <code>ISearchResult</code> for this event.
*

Back to the top