Class GuiIfc.OsmImportParams

java.lang.Object
org.ka2ddo.yaac.core.GuiIfc.OsmImportParams
Enclosing interface:
GuiIfc

public static class GuiIfc.OsmImportParams extends Object
Data structure of parameters needed for the OpenStreetMap import operation. Intended to be returned by the method for displaying the user query dialog.
Author:
Andrew Pavlin, KA2DDO
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    java.io.File pointing at the bzipped XML file containing the OSM snapshot data.
    boolean
    Boolean true indicates that Nodes and Ways tagged with the FIXME attribute should still be imported, otherwise they will be discarded during the import.
  • Constructor Summary

    Constructors
    Constructor
    Description
    OsmImportParams(File selectedFile, boolean useFixMe)
    Constructor for OsmImportParams.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • selectedFile

      public File selectedFile
      java.io.File pointing at the bzipped XML file containing the OSM snapshot data.
    • useFixMe

      public boolean useFixMe
      Boolean true indicates that Nodes and Ways tagged with the FIXME attribute should still be imported, otherwise they will be discarded during the import.
  • Constructor Details

    • OsmImportParams

      public OsmImportParams(File selectedFile, boolean useFixMe)
      Constructor for OsmImportParams.
      Parameters:
      selectedFile - java.io.File pointing at the bzipped XML file containing the OSM snapshot data.
      useFixMe - Boolean true indicates that Nodes and Ways tagged with the FIXME attribute should still be imported, otherwise they will be discarded during the import.