Ticket #6893: patch.diff
File patch.diff, 965 bytes (added by , 13 years ago) |
---|
-
src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
314 314 return bounds; 315 315 } 316 316 317 public String getAttributionText() { 318 return attributionText; 319 } 320 317 321 public void setAttributionText(String text) { 318 322 attributionText = text; 319 323 } … … 322 326 attributionImage = text; 323 327 } 324 328 329 public String getAttributionLinkURL() { 330 return attributionLinkURL; 331 } 332 325 333 public void setAttributionLinkURL(String text) { 326 334 attributionLinkURL = text; 327 335 } 328 336 337 public String getTermsOfUseURL() { 338 return termsOfUseURL; 339 } 340 329 341 public void setTermsOfUseURL(String text) { 330 342 termsOfUseURL = text; 331 343 }