Ignore:
Timestamp:
2012-03-06T21:32:44+01:00 (13 years ago)
Author:
zverik
Message:

Something works :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery_offset_db/src/iodb/OffsetDialogButton.java

    r27986 r28008  
    99 */
    1010public class OffsetDialogButton extends JButton {
     11   
     12    private ImageryOffsetBase offset;
    1113
    1214    public OffsetDialogButton( ImageryOffsetBase offset ) {
    1315        super(offset.getDescription() + " (" + offset.getPosition().lat() + ", " + offset.getPosition().lon() + ")");
     16        this.offset = offset;
     17    }
     18
     19    public ImageryOffsetBase getOffset() {
     20        return offset;
    1421    }
    1522   
Note: See TracChangeset for help on using the changeset viewer.