Interface SourceProvider
-
- 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 interface SourceProvider
Interface for a class that offers a list ofSourceEntry
s. Used by plugins to offer additional SourceEntrys to the user.- Since:
- 12649 (moved from gui.preferences package)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<SourceEntry>
getSources()
Get the collection ofSourceEntry
s.
-
-
-
Method Detail
-
getSources
java.util.Collection<SourceEntry> getSources()
Get the collection ofSourceEntry
s.- Returns:
- the collection of
SourceEntry
s
-
-