Changeset 8297 in josm for trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSource.java
- Timestamp:
- 2015-04-30T23:38:08+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSource.java
r8126 r8297 57 57 public Map<String, Object> settingValues = new HashMap<>(); 58 58 59 /** 60 * Constructs a new, active {@link StyleSource}. 61 * @param url URL that {@link org.openstreetmap.josm.io.CachedFile} understands 62 * @param name The name for this StyleSource 63 * @param title The title that can be used as menu entry 64 */ 59 65 public StyleSource(String url, String name, String title) { 60 66 super(url, name, title, true); 61 67 } 62 68 69 /** 70 * Constructs a new {@link StyleSource} 71 * @param entry The entry to copy the data (url, name, ...) from. 72 */ 63 73 public StyleSource(SourceEntry entry) { 64 74 super(entry);
Note:
See TracChangeset
for help on using the changeset viewer.
