1 11 package org.eclipse.core.runtime.preferences; 12 13 import org.eclipse.core.internal.preferences.AbstractScope; 14 import org.eclipse.core.runtime.IPath; 15 16 41 public final class DefaultScope extends AbstractScope implements IScopeContext { 42 43 47 public static final String SCOPE = "default"; 49 52 public DefaultScope() { 53 super(); 54 } 55 56 59 public String getName() { 60 return SCOPE; 61 } 62 63 66 public IEclipsePreferences getNode(String qualifier) { 67 return super.getNode(qualifier); 68 } 69 70 73 public IPath getLocation() { 74 return null; 76 } 77 } 78 | Popular Tags |