Changeset 4464 in josm


Ignore:
Timestamp:
Sep 25, 2011 7:28:53 PM (21 months ago)
Author:
simon04
Message:

fix #6893 - add attribution getters to ImageryInfo (patch by Don-vip)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java

    r4452 r4464  
    315315    } 
    316316 
     317    public String getAttributionText() { 
     318        return attributionText; 
     319    } 
     320 
    317321    public void setAttributionText(String text) { 
    318322        attributionText = text; 
     
    323327    } 
    324328 
     329    public String getAttributionLinkURL() { 
     330        return attributionLinkURL; 
     331    } 
     332 
    325333    public void setAttributionLinkURL(String text) { 
    326334        attributionLinkURL = text; 
     335    } 
     336 
     337    public String getTermsOfUseURL() { 
     338        return termsOfUseURL; 
    327339    } 
    328340 
Note: See TracChangeset for help on using the changeset viewer.