Changeset 23358 in osm for applications


Ignore:
Timestamp:
2010-09-25T22:59:50+02:00 (14 years ago)
Author:
stoecker
Message:

add missing setValueAt()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPreferenceEditor.java

    r23325 r23358  
    298298            }
    299299            return null;
     300        }
     301
     302        @Override
     303        public void setValueAt(Object o, int row, int column) {
     304            WMSInfo info = plugin.info.layers.get(row);
     305            switch (column) {
     306            case 0:
     307                info.name = (String) o;
     308            case 1:
     309                info.setURL((String)o);
     310            }
    300311        }
    301312
Note: See TracChangeset for help on using the changeset viewer.