Ignore:
Timestamp:
2009-09-20T11:17:58+02:00 (15 years ago)
Author:
stoecker
Message:

some fixes for josm 2166

Location:
applications/editors/josm/plugins
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/agpifoj/build.xml

    r17526 r17707  
    3434                <attribute name="Plugin-Early" value="false"/>
    3535                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/AgPifoJ"/>
    36                 <attribute name="Plugin-Mainversion" value="2081"/>
     36                <attribute name="Plugin-Mainversion" value="2166"/>
    3737                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3838            </manifest>
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/SimplifyWay.java

    r17365 r17707  
    3636            backRefsV.visit(wnew.getNode(i));
    3737            boolean used = false;
    38             if (backRefsV.data.size() == 1) {
     38            if (backRefsV.getData().size() == 1) {
    3939                used = Collections.frequency(w.getNodes(), wnew.getNode(i)) > 1;
    4040            } else {
    41                 backRefsV.data.remove(w);
    42                 used = !backRefsV.data.isEmpty();
     41                backRefsV.getData().remove(w);
     42                used = !backRefsV.getData().isEmpty();
    4343            }
    4444            if (!used)
  • applications/editors/josm/plugins/osmarender/build.xml

    r17518 r17707  
    2626                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2727                <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/>
    28                 <attribute name="Plugin-Mainversion" value="2067"/>
     28                <attribute name="Plugin-Mainversion" value="2166"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java

    r17518 r17707  
    6060                }
    6161            }
    62             for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) {
     62            for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.getData())) {
    6363                if (p instanceof Way) {
    6464                    for (Node n : ((Way) p).getNodes()) {
    6565                        if (n.getCoor().isWithin(b))
    66                             backRefsV.data.add(n);
     66                            backRefsV.getData().add(n);
    6767                    }
    6868                }
    6969            }
    70             for (OsmPrimitive p : backRefsV.data)
     70            for (OsmPrimitive p : backRefsV.getData())
    7171                fromDataSet.addPrimitive(p);
    7272
  • applications/editors/josm/plugins/terracer/build.xml

    r17546 r17707  
    2626                <attribute name="Plugin-Description" value="Make terraced houses out of single blocks."/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Terracer"/>
    28                 <attribute name="Plugin-Mainversion" value="2082"/>
     28                <attribute name="Plugin-Mainversion" value="2166"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/terracer/src/terracer/ReverseTerraceAction.java

    r17388 r17707  
    8686                                        CollectBackReferencesVisitor v = new CollectBackReferencesVisitor(Main.main.getCurrentDataSet());
    8787                                        v.visit(n);
    88                                         for (OsmPrimitive prim : v.data) {
     88                                        for (OsmPrimitive prim : v.getData()) {
    8989                                                if (prim.keySet().contains("building") && prim instanceof Way) {
    9090                                                        front.add((Way)prim);
  • applications/editors/josm/plugins/utilsplugin/build.xml

    r17550 r17707  
    2525                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2626                <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/>
    27                 <attribute name="Plugin-Mainversion" value="2082"/>
     27                <attribute name="Plugin-Mainversion" value="2166"/>
    2828                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    2929            </manifest>
  • applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java

    r17361 r17707  
    111111            backRefsV.visit(wnew.getNode(i));
    112112            boolean used = false;
    113             if (backRefsV.data.size() == 1) {
     113            if (backRefsV.getData().size() == 1) {
    114114                used = Collections.frequency(w.getNodes(), wnew.getNode(i)) > 1;
    115115            } else {
    116                 backRefsV.data.remove(w);
    117                 used = !backRefsV.data.isEmpty();
     116                backRefsV.getData().remove(w);
     117                used = !backRefsV.getData().isEmpty();
    118118            }
    119119            if (!used)
Note: See TracChangeset for help on using the changeset viewer.