Ignore:
Timestamp:
2013-03-23T18:45:59+01:00 (12 years ago)
Author:
zverik
Message:

probably the last alpha of iodb (or first beta, whatever)

File:
1 edited

Legend:

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

    r29384 r29388  
    2323    protected String abandonAuthor;
    2424    protected String abandonReason;
     25    protected boolean flagged;
    2526   
    2627    /**
     
    3435        this.date = date;
    3536        this.abandonDate = null;
     37        this.flagged = false;
    3638    }
    3739
     
    5254        this.abandonAuthor = author;
    5355        this.abandonReason = reason;
     56    }
     57
     58    public boolean isFlagged() {
     59        return flagged;
     60    }
     61
     62    public void setFlagged( boolean flagged ) {
     63        this.flagged = flagged;
    5464    }
    5565
Note: See TracChangeset for help on using the changeset viewer.