1 11 12 package org.eclipse.ui.navigator; 13 14 import java.util.Set ; 15 16 import org.eclipse.jface.viewers.ITreeContentProvider; 17 18 52 public interface IPipelinedTreeContentProvider extends ICommonContentProvider { 53 54 67 void getPipelinedChildren(Object aParent, Set theCurrentChildren); 68 69 81 void getPipelinedElements(Object anInput, Set theCurrentElements); 82 83 92 Object getPipelinedParent(Object anObject, Object aSuggestedParent); 93 94 128 PipelinedShapeModification interceptAdd( 129 PipelinedShapeModification anAddModification); 130 131 163 PipelinedShapeModification interceptRemove( 164 PipelinedShapeModification aRemoveModification); 165 166 185 boolean interceptRefresh(PipelinedViewerUpdate aRefreshSynchronization); 186 187 207 boolean interceptUpdate(PipelinedViewerUpdate anUpdateSynchronization); 208 209 } 210 | Popular Tags |