Ignore:
Timestamp:
2013-07-26T13:38:17+02:00 (11 years ago)
Author:
bastiK
Message:

see #8902 - add missing @Override annotations (patch by shinigami)

Location:
trunk/src/org/openstreetmap/josm/corrector
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/CorrectionTable.java

    r3083 r6084  
    1818            TableCellRenderer {
    1919
     20        @Override
    2021        public Component getTableCellRendererComponent(JTable table,
    2122                Object value, boolean isSelected, boolean hasFocus, int row,
     
    4647    }
    4748
     49    @Override
    4850    public TableCellRenderer getCellRenderer(int row, int column) {
    4951        if (getCorrectionTableModel().isBoldCell(row, column)) {
  • trunk/src/org/openstreetmap/josm/corrector/CorrectionTableModel.java

    r3083 r6084  
    2424    }
    2525
     26    @Override
    2627    abstract public int getColumnCount();
    2728
     
    4243    }
    4344
     45    @Override
    4446    public int getRowCount() {
    4547        return corrections.size();
     
    7274    }
    7375
     76    @Override
    7477    public Object getValueAt(int rowIndex, int colIndex) {
    7578        if (colIndex == applyColumn)
  • trunk/src/org/openstreetmap/josm/corrector/TagCorrectionTableModel.java

    r3083 r6084  
    3232    }
    3333
     34    @Override
    3435    public Object getCorrectionValueAt(int rowIndex, int colIndex) {
    3536        TagCorrection tagCorrection = getCorrections().get(rowIndex);
     
    4849    }
    4950
     51    @Override
    5052    protected boolean isBoldCell(int row, int column) {
    5153        TagCorrection tagCorrection = getCorrections().get(row);
Note: See TracChangeset for help on using the changeset viewer.