| Revision 3083,
342 bytes
checked in by bastiK, 2 years ago
(diff) |
|
added svn:eol-style=native to source files
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file. |
|---|
| 2 | package org.openstreetmap.josm.data.osm; |
|---|
| 3 | |
|---|
| 4 | import java.util.Collection; |
|---|
| 5 | |
|---|
| 6 | public interface ChangesetCacheEvent { |
|---|
| 7 | ChangesetCache getSource(); |
|---|
| 8 | Collection<Changeset> getAddedChangesets(); |
|---|
| 9 | Collection<Changeset> getRemovedChangesets(); |
|---|
| 10 | Collection<Changeset> getUpdatedChangesets(); |
|---|
| 11 | |
|---|
| 12 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.