Ignore:
Timestamp:
2014-09-07T16:33:52+02:00 (10 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSetting.java

    r7450 r7509  
    1212/**
    1313 * Setting to customize a MapPaint style.
    14  * 
    15  * Can be changed by the user in the right click menu of the mappaint style 
     14 *
     15 * Can be changed by the user in the right click menu of the mappaint style
    1616 * dialog.
    17  * 
     17 *
    1818 * Defined in the MapCSS style, e.g.
    1919 * <pre>
     
    2323 *   default: true;
    2424 * }
    25  * 
     25 *
    2626 * way[highway][setting("highway_casing")] {
    2727 *   casing-width: 2;
     
    3333
    3434    void addMenuEntry(JMenu menu);
    35    
     35
    3636    Object getValue();
    37    
     37
    3838    /**
    3939     * A style setting for boolean value (yes / no).
     
    7171            menu.add(item);
    7272        }
    73        
     73
    7474        public static BooleanStyleSetting create(Cascade c, StyleSource parentStyle, String key) {
    7575            String label = c.get("label", null, String.class);
     
    8383                return null;
    8484            }
    85             String prefKey = parentStyle.url + ":boolean:" + key; 
     85            String prefKey = parentStyle.url + ":boolean:" + key;
    8686            return new BooleanStyleSetting(parentStyle, prefKey, label, def);
    8787        }
     
    9393            return Boolean.parseBoolean(val);
    9494        }
    95        
     95
    9696    }
    9797}
Note: See TracChangeset for help on using the changeset viewer.