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/widgets/QuadStateCheckBox.java

    r6890 r7509  
    7979        setState(initial);
    8080    }
    81    
     81
    8282    /**
    8383     * Constructs a new {@code QuadStateCheckBox}.
     
    9393    @Override
    9494    public void addMouseListener(MouseListener l) { }
    95    
     95
    9696    /**
    9797     * Set the new state.
     
    101101        model.setState(state);
    102102    }
    103    
    104     /** 
    105      * Return the current state, which is determined by the selection status of the model. 
    106      * @return The current state 
     103
     104    /**
     105     * Return the current state, which is determined by the selection status of the model.
     106     * @return The current state
    107107     */
    108108    public State getState() {
    109109        return model.getState();
    110110    }
    111    
     111
    112112    @Override
    113113    public void setSelected(boolean b) {
     
    121121    private final class QuadStateDecorator implements ButtonModel {
    122122        private final ButtonModel other;
    123        
     123
    124124        private QuadStateDecorator(ButtonModel other) {
    125125            this.other = other;
    126126        }
    127        
     127
    128128        private void setState(State state) {
    129129            if (state == State.NOT_SELECTED) {
     
    149149            }
    150150        }
    151        
     151
    152152        /**
    153153         * The current state is embedded in the selection / armed
Note: See TracChangeset for help on using the changeset viewer.