Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IInputSelectionProvider.java')
-rw-r--r--bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IInputSelectionProvider.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IInputSelectionProvider.java b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IInputSelectionProvider.java
index b5fdeab6f9e..fd1adbd93a5 100644
--- a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IInputSelectionProvider.java
+++ b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IInputSelectionProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 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
@@ -7,13 +7,15 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
+ * Hendrik Still <hendrik.still@gammas.de> - bug 412273
*******************************************************************************/
package org.eclipse.jface.viewers;
/**
* Interface common to all objects that provide both an input and
* a selection.
+ * @param <I> Type of the input
*/
-public interface IInputSelectionProvider extends IInputProvider,
+public interface IInputSelectionProvider<I> extends IInputProvider<I>,
ISelectionProvider {
}

Back to the top