Package | Description |
---|---|
org.openstreetmap.josm.gui.dialogs.relation |
Toggle dialog allowing to display currently loaded relations and perform operations on them.
|
org.openstreetmap.josm.tools |
Provides the classes for various utilities and tools called from all other packages.
|
Modifier and Type | Method and Description |
---|---|
protected <T> void |
MemberTransferHandler.importData(MemberTable destination,
int insertRow,
java.util.Collection<T> memberData,
Utils.Function<T,RelationMember> toMemberFunction) |
Modifier and Type | Method and Description |
---|---|
static <A,B> java.util.Collection<B> |
Utils.transform(java.util.Collection<? extends A> c,
Utils.Function<A,B> f)
Transforms the collection
c into an unmodifiable collection and
applies the Utils.Function f on each element upon access. |
static <A,B> java.util.List<B> |
Utils.transform(java.util.List<? extends A> l,
Utils.Function<A,B> f)
Transforms the list
l into an unmodifiable list and
applies the Utils.Function f on each element upon access. |