org.openstreetmap.josm.io
Class MultiFetchServerObjectReader.FetchResult

java.lang.Object
  extended by org.openstreetmap.josm.io.MultiFetchServerObjectReader.FetchResult
Enclosing class:
MultiFetchServerObjectReader

protected static class MultiFetchServerObjectReader.FetchResult
extends java.lang.Object

The class holding the results given by MultiFetchServerObjectReader.Fetcher. It is only a wrapper of the resulting DataSet and the collection of PrimitiveId that could not have been loaded.


Field Summary
 DataSet dataSet
          The resulting data set
 java.util.Set<PrimitiveId> missingPrimitives
          The collection of primitive ids that could not have been loaded
 
Constructor Summary
MultiFetchServerObjectReader.FetchResult(DataSet dataSet, java.util.Set<PrimitiveId> missingPrimitives)
          Constructs a FetchResult
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

dataSet

public final DataSet dataSet
The resulting data set


missingPrimitives

public final java.util.Set<PrimitiveId> missingPrimitives
The collection of primitive ids that could not have been loaded

Constructor Detail

MultiFetchServerObjectReader.FetchResult

public MultiFetchServerObjectReader.FetchResult(DataSet dataSet,
                                                java.util.Set<PrimitiveId> missingPrimitives)
Constructs a FetchResult

Parameters:
dataSet - The resulting data set
missingPrimitives - The collection of primitive ids that could not have been loaded


JOSM