Changeset 32572 in osm for applications/editors


Ignore:
Timestamp:
2016-07-05T14:48:34+02:00 (9 years ago)
Author:
floscher
Message:

[mapillary] Formatting changes

Patch submitted by peterneubauer<peter@…>.

Location:
applications/editors/josm/plugins/mapillary
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/.idea/codeStyleSettings.xml

    r32354 r32572  
    2929        <option name="JD_PRESERVE_LINE_FEEDS" value="true" />
    3030        <option name="WRAP_COMMENTS" value="true" />
     31        <MarkdownNavigatorCodeStyleSettings>
     32          <option name="RIGHT_MARGIN" value="120" />
     33        </MarkdownNavigatorCodeStyleSettings>
    3134        <XML>
    3235          <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImage.java

    r32067 r32572  
    2828   * Main constructor of the class MapillaryImage
    2929   *
    30    * @param key  The unique identifier of the image.
    31    * @param latLon  The latitude and longitude where it is positioned.
    32    * @param ca  The direction of the images in degrees, meaning 0 north.
     30   * @param key The unique identifier of the image.
     31   * @param latLon The latitude and longitude where it is positioned.
     32   * @param ca The direction of the images in degrees, meaning 0 north.
    3333   */
    3434  public MapillaryImage(final String key, final LatLon latLon, final double ca) {
     
    5050   * Sets the location of the image.
    5151   *
    52    * @param location
    53    *          A {@code String} object containing the place where the image was taken.
     52   * @param location A {@code String} object containing the place where the image was taken.
    5453   */
    5554  public void setLocation(String location) {
     
    6968   * Adds a new sign to the set of signs.
    7069   *
    71    * @param sign
    72    *          A {@code String} that identifies the type of sign.
     70   * @param sign A {@code String} that identifies the type of sign.
    7371   */
    7472  public void addSign(String sign) {
     
    8886   * Sets the username of the person who took the image.
    8987   *
    90    * @param user
    91    *          A {@code String} containing the username of the person who took the image.
     88   * @param user A {@code String} containing the username of the person who took the image.
    9289   */
    9390  public void setUser(String user) {
     
    9895   * Returns the username of the person who took the picture.
    9996   *
    100    * @return A {@code String} containing the username of the person who took the
    101    *         picture.
     97   * @return A {@code String} containing the username of the person who took the picture.
    10298   */
    10399  public String getUser() {
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/SelectMode.java

    r32383 r32572  
    115115        LatLon from = Main.map.mapView.getLatLon(this.start.getX(), this.start.getY());
    116116        for (MapillaryAbstractImage img : this.data.getMultiSelectedImages()) {
    117 
    118117          img.move(to.getX() - from.getX(), to.getY() - from.getY());
    119118        }
Note: See TracChangeset for help on using the changeset viewer.