Uses of Interface
org.eclipse.aether.RepositoryListener
-
Packages that use RepositoryListener Package Description org.eclipse.aether The primary API of theRepositorySystemand its functionality.org.eclipse.aether.impl.guice The integration with the dependency injection framework Google Guice.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.util.listener Utilities to build repository and transfer listeners. -
-
Uses of RepositoryListener in org.eclipse.aether
Classes in org.eclipse.aether that implement RepositoryListener Modifier and Type Class Description classAbstractRepositoryListenerA skeleton implementation for custom repository listeners.Fields in org.eclipse.aether declared as RepositoryListener Modifier and Type Field Description private RepositoryListenerDefaultRepositorySystemSession. repositoryListenerMethods in org.eclipse.aether that return RepositoryListener Modifier and Type Method Description RepositoryListenerAbstractForwardingRepositorySystemSession. getRepositoryListener()RepositoryListenerDefaultRepositorySystemSession. getRepositoryListener()RepositoryListenerRepositorySystemSession. getRepositoryListener()Gets the listener being notified of actions in the repository system.Methods in org.eclipse.aether with parameters of type RepositoryListener Modifier and Type Method Description DefaultRepositorySystemSessionDefaultRepositorySystemSession. setRepositoryListener(RepositoryListener repositoryListener)Sets the listener being notified of actions in the repository system. -
Uses of RepositoryListener in org.eclipse.aether.impl.guice
Methods in org.eclipse.aether.impl.guice that return types with arguments of type RepositoryListener Modifier and Type Method Description (package private) java.util.Set<RepositoryListener>AetherModule. providesRepositoryListeners() -
Uses of RepositoryListener in org.eclipse.aether.internal.impl
Fields in org.eclipse.aether.internal.impl with type parameters of type RepositoryListener Modifier and Type Field Description private java.util.Collection<RepositoryListener>DefaultRepositoryEventDispatcher. listenersMethods in org.eclipse.aether.internal.impl with parameters of type RepositoryListener Modifier and Type Method Description DefaultRepositoryEventDispatcherDefaultRepositoryEventDispatcher. addRepositoryListener(RepositoryListener listener)private voidDefaultRepositoryEventDispatcher. dispatch(RepositoryEvent event, RepositoryListener listener)Method parameters in org.eclipse.aether.internal.impl with type arguments of type RepositoryListener Modifier and Type Method Description DefaultRepositoryEventDispatcherDefaultRepositoryEventDispatcher. setRepositoryListeners(java.util.Collection<RepositoryListener> listeners)Constructor parameters in org.eclipse.aether.internal.impl with type arguments of type RepositoryListener Constructor Description DefaultRepositoryEventDispatcher(java.util.Set<RepositoryListener> listeners) -
Uses of RepositoryListener in org.eclipse.aether.util.listener
Classes in org.eclipse.aether.util.listener that implement RepositoryListener Modifier and Type Class Description classChainedRepositoryListenerA repository listener that delegates to zero or more other listeners (multicast).Fields in org.eclipse.aether.util.listener with type parameters of type RepositoryListener Modifier and Type Field Description private java.util.List<RepositoryListener>ChainedRepositoryListener. listenersMethods in org.eclipse.aether.util.listener that return RepositoryListener Modifier and Type Method Description static RepositoryListenerChainedRepositoryListener. newInstance(RepositoryListener listener1, RepositoryListener listener2)Creates a new multicast listener that delegates to the specified listeners.Methods in org.eclipse.aether.util.listener with parameters of type RepositoryListener Modifier and Type Method Description voidChainedRepositoryListener. add(RepositoryListener listener)Adds the specified listener to the end of the multicast chain.protected voidChainedRepositoryListener. handleError(RepositoryEvent event, RepositoryListener listener, java.lang.RuntimeException error)static RepositoryListenerChainedRepositoryListener. newInstance(RepositoryListener listener1, RepositoryListener listener2)Creates a new multicast listener that delegates to the specified listeners.voidChainedRepositoryListener. remove(RepositoryListener listener)Removes the specified listener from the multicast chain.Method parameters in org.eclipse.aether.util.listener with type arguments of type RepositoryListener Modifier and Type Method Description voidChainedRepositoryListener. add(java.util.Collection<? extends RepositoryListener> listeners)Adds the specified listeners to the end of the multicast chain.Constructors in org.eclipse.aether.util.listener with parameters of type RepositoryListener Constructor Description ChainedRepositoryListener(RepositoryListener... listeners)Creates a new multicast listener that delegates to the specified listeners.Constructor parameters in org.eclipse.aether.util.listener with type arguments of type RepositoryListener Constructor Description ChainedRepositoryListener(java.util.Collection<? extends RepositoryListener> listeners)Creates a new multicast listener that delegates to the specified listeners.
-