Uses of Class
org.openstreetmap.josm.data.osm.history.History
-
Packages that use History Package Description org.openstreetmap.josm.data.osm.history Provides the classes for OSM primitiveshistory
(edition revisions).org.openstreetmap.josm.gui.history Provides GUI classes for handling history of OSM objects. -
-
Uses of History in org.openstreetmap.josm.data.osm.history
Methods in org.openstreetmap.josm.data.osm.history that return History Modifier and Type Method Description History
History. between(long fromVersion, long untilVersion)
Returns a new partial copy of this history, between the given version numbersHistory
History. between(Instant fromDate, Instant untilDate)
Returns a new partial copy of this history, between the given datesprivate static History
History. filter(History history, History.FilterPredicate predicate)
History
History. forUserId(long uid)
Returns a new partial copy of this history, for the given user idHistory
History. from(long fromVersion)
Returns a new partial copy of this history, from the given version numberHistory
History. from(Instant fromDate)
Returns a new partial copy of this history, from the given dateHistory
HistoryDataSet. getHistory(long id, OsmPrimitiveType type)
Replies the history for a given primitive with idid
and typetype
.History
HistoryDataSet. getHistory(PrimitiveId pid)
Replies the history for a primitive with idid
.History
History. sortAscending()
Returns a new copy of this history, sorted in ascending order.History
History. sortDescending()
Returns a new copy of this history, sorted in descending order.History
History. until(long untilVersion)
Returns a new partial copy of this history, to the given version numberHistory
History. until(Instant untilDate)
Returns a new partial copy of this history, until the given dateMethods in org.openstreetmap.josm.data.osm.history with parameters of type History Modifier and Type Method Description private static History
History. filter(History history, History.FilterPredicate predicate)
-
Uses of History in org.openstreetmap.josm.gui.history
Fields in org.openstreetmap.josm.gui.history declared as History Modifier and Type Field Description private History
HistoryBrowserModel. history
the history of an OsmPrimitiveMethods in org.openstreetmap.josm.gui.history that return History Modifier and Type Method Description History
HistoryBrowser. getHistory()
replies theHistory
currently displayed by this browserHistory
HistoryBrowserModel. getHistory()
replies the history managed by this modelMethods in org.openstreetmap.josm.gui.history with parameters of type History Modifier and Type Method Description HistoryLoadTask
HistoryLoadTask. add(History history)
Adds an object to be loaded, the object is specified by an already loaded object history.(package private) static String
HistoryBrowserDialog. buildTitle(History h)
Constructs the title for this dialog(package private) boolean
HistoryBrowserModel. isSamePrimitive(History history)
void
HistoryBrowser. populate(History history)
populates the browser with the history of a specificOsmPrimitive
protected void
HistoryBrowserDialog. setHistory(History history)
Sets the current history.void
HistoryBrowserModel. setHistory(History history)
sets the history to be managed by this modelvoid
HistoryBrowserDialogManager. show(History h)
Show history dialog for the given history.Constructors in org.openstreetmap.josm.gui.history with parameters of type History Constructor Description HistoryBrowser(History history)
Constructs a newHistoryBrowser
.HistoryBrowserDialog(History history)
Constructs a newHistoryBrowserDialog
.HistoryBrowserModel(History history)
Creates a new history browser model for a given history.
-