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 import org.eclipse.osgi.service.datalocation.Location; 16 17 36 public final class InstanceScope extends AbstractScope implements IScopeContext { 37 38 42 public static final String SCOPE = "instance"; 44 47 public InstanceScope() { 48 super(); 49 } 50 51 54 public IPath getLocation() { 55 return null; 58 } 59 60 63 public String getName() { 64 return SCOPE; 65 } 66 67 70 public IEclipsePreferences getNode(String qualifier) { 71 return super.getNode(qualifier); 72 } 73 } 74 | Popular Tags |