Package | Description |
---|---|
org.openstreetmap.josm.data.osm.history | |
org.openstreetmap.josm.gui.history |
Provides GUI classes for handling history of OSM objects.
|
Modifier and Type | Method and Description |
---|---|
History |
History.between(java.util.Date fromDate,
java.util.Date untilDate)
Returns a new partial copy of this history, between the given dates
|
History |
History.between(long fromVersion,
long untilVersion)
Returns a new partial copy of this history, betwwen the given version numbers
|
private 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 id
|
History |
History.from(java.util.Date fromDate)
Returns a new partial copy of this history, from the given date
|
History |
History.from(long fromVersion)
Returns a new partial copy of this history, from the given version number
|
History |
HistoryDataSet.getHistory(long id,
OsmPrimitiveType type)
Replies the history for a given primitive with id
id
and type type . |
History |
HistoryDataSet.getHistory(PrimitiveId pid)
Replies the history for a primitive with id
id . |
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(java.util.Date untilDate)
Returns a new partial copy of this history, until the given date
|
History |
History.until(long untilVersion)
Returns a new partial copy of this history, to the given version number
|
Modifier and Type | Method and Description |
---|---|
private static History |
History.filter(History history,
History.FilterPredicate predicate) |
Modifier and Type | Field and Description |
---|---|
private History |
HistoryBrowserModel.history
the history of an OsmPrimitive
|
Modifier and Type | Method and Description |
---|---|
History |
HistoryBrowser.getHistory()
replies the
History currently displayed by this browser |
History |
HistoryBrowserModel.getHistory()
replies the history managed by this model
|
Modifier and Type | Method and 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 java.lang.String |
HistoryBrowserDialog.buildTitle(History h)
Constructs the title for this dialog
|
void |
HistoryBrowser.populate(History history)
populates the browser with the history of a specific
OsmPrimitive |
void |
HistoryBrowserModel.setHistory(History history)
sets the history to be managed by this model
|
protected void |
HistoryBrowserDialog.setHistory(History history)
Sets the current history.
|
void |
HistoryBrowserDialogManager.show(History h)
Show history dialog for the given history.
|
Constructor and Description |
---|
HistoryBrowser(History history)
Constructs a new
HistoryBrowser . |
HistoryBrowserDialog(History history)
Constructs a new
HistoryBrowserDialog . |
HistoryBrowserModel(History history)
Creates a new history browser model for a given history.
|