1 11 package org.eclipse.debug.internal.ui.viewers.provisional; 12 13 import org.eclipse.jface.viewers.ISelection; 14 15 34 public interface IModelSelectionPolicy { 35 36 44 public boolean contains(ISelection selection, IPresentationContext context); 45 46 56 public boolean overrides(ISelection existing, ISelection candidate, IPresentationContext context); 57 58 66 public boolean isSticky(ISelection selection, IPresentationContext context); 67 68 } 69 | Popular Tags |