Ignore:
Timestamp:
23.12.2008 15:07:05 (3 years ago)
Author:
stoecker
Message:

removed usage of tab stops

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/SelectionChangedListener.java

    r655 r1169  
    1010 * a selection of any data member changes, the dataSet gets informed about this 
    1111 * and fires a selectionChanged event. 
    12  *  
     12 * 
    1313 * Note that these events are not fired immediately but are inserted in the 
    1414 * Swing event queue and packed together. So only one selection changed event 
    1515 * is issued within a one message dispatch routine. 
    16  *  
     16 * 
    1717 * @author imi 
    1818 */ 
    1919public interface SelectionChangedListener { 
    2020 
    21         /** 
    22         * Informs the listener that the selection in the dataset has changed. 
    23         * @param newSelection The new selection. 
    24         */ 
    25         public void selectionChanged(Collection<? extends OsmPrimitive> newSelection); 
     21    /** 
     22    * Informs the listener that the selection in the dataset has changed. 
     23    * @param newSelection The new selection. 
     24    */ 
     25    public void selectionChanged(Collection<? extends OsmPrimitive> newSelection); 
    2626} 
Note: See TracChangeset for help on using the changeset viewer.