public interface IPreferenceNodeVisitor
Usage:
class Visitor implements IPreferenceNodeVisitor { public boolean visit(IEclipsePreferences node) { // your code here return true; } } IEclipsePreferences root = ...; root.accept(new Visitor());
Clients may implement this interface.
IEclipsePreferences.accept(IPreferenceNodeVisitor)
Modifier and Type | Method and Description |
---|---|
boolean |
visit(IEclipsePreferences node)
Visits the given preference node.
|
boolean visit(IEclipsePreferences node) throws org.osgi.service.prefs.BackingStoreException
node
- the node to visittrue
if the node's children should
be visited; false
if they should be skippedorg.osgi.service.prefs.BackingStoreException
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.