Package org.eclipse.core.internal.preferences

Examples of org.eclipse.core.internal.preferences.EclipsePreferences


      if (project == null || qualifier == null)
        return null;
      // Make it relative to this node rather than navigating to it from the root.
      // Walk backwards up the tree starting at this node.
      // This is important to avoid a chicken/egg thing on startup.
      EclipsePreferences node = this;
      for (int i = 3; i < segmentCount; i++)
        node = (EclipsePreferences) node.parent();
      loadLevel = node;
    }
    return loadLevel;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.core.internal.preferences.EclipsePreferences

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.