| org.eclipse.ui.preferences.IWorkingCopyManager
All known Subclasses: org.eclipse.ui.preferences.WorkingCopyManager,
IWorkingCopyManager | public interface IWorkingCopyManager (Code) | | IWorkingCopyManager is the interface for the working copy
support for references to shared preference nodes.
since: 3.1 |
Method Summary | |
public void | applyChanges() Apply the changes for all working copies, to their original
preference nodes. | public IEclipsePreferences | getWorkingCopy(IEclipsePreferences original) Return a working copy instance based on the given preference node. |
applyChanges | public void applyChanges() throws BackingStoreException(Code) | | Apply the changes for all working copies, to their original
preference nodes. Alternatively, if a client wishes to apply the changes
for a single working copy they can call #flush on that
working copy node.
throws: BackingStoreException - if there were problems accessing the backing store |
getWorkingCopy | public IEclipsePreferences getWorkingCopy(IEclipsePreferences original)(Code) | | Return a working copy instance based on the given preference node. If a
working copy already exists then return it, otherwise create one and keep
track of it for other clients who are looking for it.
Parameters: original - the original node the working copy node |
|
|