source: josm/trunk/src/org/openstreetmap/josm/plugins/PluginPreferenceFactory.java@ 3779

Last change on this file since 3779 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 548 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.plugins;
3
4import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
5import org.openstreetmap.josm.gui.preferences.PreferenceSettingFactory;
6
7public class PluginPreferenceFactory implements PreferenceSettingFactory {
8
9 private final PluginProxy plugin;
10
11 public PluginPreferenceFactory(PluginProxy plugin) {
12 this.plugin = plugin;
13 }
14
15 public PreferenceSetting createPreferenceSetting() {
16 return plugin.getPreferenceSetting();
17 }
18
19}
Note: See TracBrowser for help on using the repository browser.