Ignore:
Timestamp:
2013-02-06T17:16:30+01:00 (11 years ago)
Author:
bastiK
Message:

fix problem with making multisplitpanelayout persistent (avoid loop reference); javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/JoinAreasAction.java

    r5132 r5698  
    107107
    108108
    109     //HelperClass
    110     //saves a way and the "inside" side
    111     // insideToTheLeft: if true left side is "in", false -right side is "in". Left and right are determined along the orientation of way.
     109    /**
     110     * HelperClass - saves a way and the "inside" side.
     111     *
     112     * insideToTheLeft: if true left side is "in", false -right side is "in".
     113     * Left and right are determined along the orientation of way.
     114     */
    112115    public static class WayInPolygon {
    113116        public final Way way;
     
    937940    /**
    938941     * Finds all ways that form inner or outer boundaries.
    939      * @param Collection<Way> A list of (splitted) ways that form a multigon and share common end nodes on intersections.
    940      * @param Collection<Way> this list is filled with ways that are to be discarded
    941      * @return Collection<Collection<Way>> A list of ways that form the outer and inner boundaries of the multigon.
     942     * @param multigonWays A list of (splitted) ways that form a multigon and share common end nodes on intersections.
     943     * @param discardedResult this list is filled with ways that are to be discarded
     944     * @return A list of ways that form the outer and inner boundaries of the multigon.
    942945     */
    943946    public static List<AssembledPolygon> findBoundaryPolygons(Collection<WayInPolygon> multigonWays, List<Way> discardedResult) {
     
    10341037    /**
    10351038     * This method checks if polygons have several touching parts and splits them in several polygons.
    1036      * @param polygon the polygon to process.
     1039     * @param polygons the polygons to process.
    10371040     */
    10381041    public static List<AssembledPolygon> fixTouchingPolygons(List<AssembledPolygon> polygons)
Note: See TracChangeset for help on using the changeset viewer.