/******************************************************************************* * Copyright (c) 2000, 2006 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.search.ui; import java.util.EventObject; /** * The common superclass of all events sent from <code>ISearchResults</code>. * This class is supposed to be subclassed to provide more specific * notification. * * @see org.eclipse.search.ui.ISearchResultListener#searchResultChanged(SearchResultEvent) * * @since 3.0 */ public abstract class SearchResultEvent extends EventObject { /** * Creates a new search result event for the given search result. * * @param searchResult the source of the event */ protected SearchResultEvent(ISearchResult searchResult) { super(searchResult); } /** * Gets the <code>ISearchResult</code> for this event. * * @return the source of this event */ public ISearchResult getSearchResult() { return (ISearchResult) getSource(); } }