Package org.openstreetmap.josm.tools
Interface Tag2Link.LinkConsumer
-
- Enclosing class:
- Tag2Link
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface Tag2Link.LinkConsumer
Represents an operation that accepts a link.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
acceptLink(String name, String url, ImageResource icon)
Performs the operation on the given arguments.
-
-
-
Method Detail
-
acceptLink
void acceptLink(String name, String url, ImageResource icon)
Performs the operation on the given arguments.- Parameters:
name
- the name/label of the linkurl
- the URL of the linkicon
- the icon to use
-
-