add missing @since 3.0.2

This commit is contained in:
Olivier Lamy 2013-07-20 15:46:16 +10:00
parent e2f99c2ca5
commit d5259127ed
5 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,7 @@ package org.apache.maven.eventspy;
/**
* A skeleton eventspy that does nothing other than helping implementors.
* @since 3.0.2
*/
public abstract class AbstractEventSpy
implements EventSpy

View File

@ -27,6 +27,7 @@ import java.util.Map;
* looks up all implementators of this interface and calls their {@link #init(Context)} method. <em>Note:</em>
* Implementors are strongly advised to inherit from {@link AbstractEventSpy} instead of directly implementing this
* interface.
* @since 3.0.2
*/
public interface EventSpy
{

View File

@ -31,6 +31,7 @@ import org.eclipse.aether.RepositoryListener;
/**
* Dispatches callbacks to all registered eventspies.
* @since 3.0.2
*/
@Component( role = EventSpyDispatcher.class )
public class EventSpyDispatcher

View File

@ -25,6 +25,7 @@ import org.apache.maven.execution.ExecutionListener;
/**
* Forwards execution events to eventspies.
* @since 3.0.2
*/
class EventSpyExecutionListener
extends AbstractExecutionListener

View File

@ -25,6 +25,7 @@ import org.eclipse.aether.RepositoryListener;
/**
* Forwards repository events to eventspies.
* @since 3.0.2
*/
class EventSpyRepositoryListener
extends AbstractRepositoryListener