Ignore:
Timestamp:
2016-06-30T20:10:45+02:00 (8 years ago)
Author:
donvip
Message:

remove calls to deprecated methods

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

Legend:

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

    r32134 r32468  
    55    <property name="commit.message" value="Inital commit"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="9759"/>
     7    <property name="plugin.main.version" value="10279"/>
    88
    99    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/indoorhelper/src/controller/IndoorHelperController.java

    r32137 r32468  
    2323import java.awt.event.ItemEvent;
    2424import java.awt.event.ItemListener;
    25 import java.io.IOException;
    2625import java.util.ArrayList;
    2726import java.util.Collections;
     
    3130
    3231import javax.swing.JOptionPane;
    33 import javax.xml.stream.XMLStreamException;
    3432
    3533import org.openstreetmap.josm.Main;
    3634import org.openstreetmap.josm.actions.ValidateAction;
     35import org.openstreetmap.josm.data.osm.Tag;
    3736import org.openstreetmap.josm.data.preferences.MapListSetting;
    3837import org.openstreetmap.josm.data.preferences.Setting;
    39 import org.openstreetmap.josm.data.osm.Tag;
    4038import org.openstreetmap.josm.data.validation.OsmValidator;
    4139import org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker;
     
    4341import org.openstreetmap.josm.gui.dialogs.FilterTableModel;
    4442import org.openstreetmap.josm.gui.mappaint.MapPaintStyles;
    45 import org.xml.sax.SAXException;
    4643
    4744import model.IndoorHelperModel;
     
    5956 *
    6057 */
    61 
    6258public class IndoorHelperController {
    6359
  • applications/editors/josm/plugins/indoorhelper/src/model/IndoorHelperModel.java

    r32122 r32468  
    3939 * @author egru
    4040 */
    41 
    4241public class IndoorHelperModel{
    4342
     
    261260         */
    262261        public void addTagsToOSM(IndoorObject object, List<Tag> userTags){
    263                 if(!Main.main.getCurrentDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
     262                if(!Main.getLayerManager().getEditDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
    264263                       
    265264                        List<Tag> tags = this.getObjectTags(object);
     
    279278                        }
    280279                       
    281                 } else if(Main.main.getCurrentDataSet().selectionEmpty()){
     280                } else if(Main.getLayerManager().getEditDataSet().selectionEmpty()){
    282281                       
    283282                        JOptionPane.showMessageDialog(null, "No data selected.", "Error", JOptionPane.ERROR_MESSAGE);
    284                        
    285                 }
    286                
     283                }
    287284        }
    288285       
     
    295292        public void addTagsToOSM(IndoorObject object){
    296293               
    297                 if(!Main.main.getCurrentDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
     294                if(!Main.getLayerManager().getEditDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
    298295                        List<Tag> tags = this.getObjectTags(object);
    299296                        tags.add(new Tag("indoor:level", Integer.toString(workingLevel)));
     
    306303                                Main.main.undoRedo.add(new ChangePropertyCommand(Main.main.getInProgressSelection(), t.getKey(), t.getValue()));
    307304                        }
    308                 } else if(Main.main.getCurrentDataSet().selectionEmpty()){
     305                } else if(Main.getLayerManager().getEditDataSet().selectionEmpty()){
    309306                        JOptionPane.showMessageDialog(null, "No data selected.", "Error", JOptionPane.ERROR_MESSAGE);
    310307                }
    311                
    312                
    313308        }
    314309       
     
    321316                return counter.getRanking();
    322317        }
    323        
    324        
    325 
    326318}
Note: See TracChangeset for help on using the changeset viewer.