1 11 12 package org.eclipse.ui.internal.navigator.extensions; 13 14 import org.eclipse.jface.viewers.IStructuredSelection; 15 import org.eclipse.jface.viewers.StructuredSelection; 16 import org.eclipse.ui.IEditorInput; 17 import org.eclipse.ui.IWorkbenchPage; 18 import org.eclipse.ui.navigator.ILinkHelper; 19 20 24 public class SkeletonLinkHelper implements ILinkHelper { 25 26 29 public static final ILinkHelper INSTANCE = new SkeletonLinkHelper(); 30 31 private SkeletonLinkHelper() { 32 33 } 34 35 38 public IStructuredSelection findSelection(IEditorInput anInput) { 39 return StructuredSelection.EMPTY; 40 } 41 42 45 public void activateEditor(IWorkbenchPage aPage, IStructuredSelection aSelection) { 46 48 } 49 50 } 51 | Popular Tags |