1 19 package org.netbeans.modules.diff; 20 21 import org.openide.util.NbPreferences; 22 23 import java.util.prefs.Preferences ; 24 25 30 public class DiffModuleConfig { 31 32 private static final DiffModuleConfig INSTANCE = new DiffModuleConfig(); 33 34 public static DiffModuleConfig getDefault() { 35 return INSTANCE; 36 } 37 38 40 public Preferences getPreferences() { 41 return NbPreferences.forModule(DiffModuleConfig.class); 42 } 43 44 45 } 46 | Popular Tags |