1 11 package org.eclipse.help.internal.workingset; 12 13 import java.io.*; 14 15 21 public interface IHelpWorkingSetManager { 22 23 public AdaptableTocsArray getRoot(); 24 27 public void addWorkingSet(WorkingSet workingSet) throws IOException; 28 29 32 public WorkingSet createWorkingSet(String name, 33 AdaptableHelpResource[] elements); 34 35 39 public WorkingSet getWorkingSet(String name); 40 41 46 public WorkingSet[] getWorkingSets(); 47 48 51 public void removeWorkingSet(WorkingSet workingSet); 52 53 60 public void workingSetChanged(WorkingSet changedWorkingSet) 61 throws IOException; 62 63 public AdaptableToc getAdaptableToc(String href); 64 65 public AdaptableTopic getAdaptableTopic(String id); 66 67 public String getCurrentWorkingSet(); 68 69 public void setCurrentWorkingSet(String workingSet); 70 } 71 | Popular Tags |