1 11 12 package org.eclipse.ui.internal; 13 14 import java.util.Set ; 15 16 import org.eclipse.ui.IMemento; 17 18 22 interface IStickyViewManager { 23 24 void remove(String perspectiveId); 25 26 void add(String perspectiveId, Set stickyViewSet); 27 28 void clear(); 29 30 void update(Perspective oldPersp, Perspective newPersp); 31 32 void save(IMemento memento); 33 34 void restore(IMemento memento); 35 36 } 37 | Popular Tags |