mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-05-06 12:56:44 +02:00
added javadoc for blame line pre processor api
This commit is contained in:
@@ -37,6 +37,8 @@ package sonia.scm.repository;
|
||||
import sonia.scm.plugin.ExtensionPoint;
|
||||
|
||||
/**
|
||||
* A pre processor for {@link BlameLine} objects. A pre processor is able to
|
||||
* modify the object before it is delivered to the user interface.
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
* @since 1.17
|
||||
@@ -46,10 +48,10 @@ public interface BlameLinePreProcessor extends PreProcessor<BlameLine>
|
||||
{
|
||||
|
||||
/**
|
||||
* Method description
|
||||
* Process the given blame line.
|
||||
*
|
||||
*
|
||||
* @param blameLine
|
||||
* @param blameLine blame line to process.
|
||||
*/
|
||||
@Override
|
||||
public void process(BlameLine blameLine);
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
*/
|
||||
|
||||
|
||||
|
||||
package sonia.scm.repository;
|
||||
|
||||
//~--- non-JDK imports --------------------------------------------------------
|
||||
@@ -37,6 +38,8 @@ package sonia.scm.repository;
|
||||
import sonia.scm.plugin.ExtensionPoint;
|
||||
|
||||
/**
|
||||
* The BlameLinePreProcessorFactory create {@link BlameLinePreProcessor}
|
||||
* objects for a specific repository.
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
* @since 1.17
|
||||
@@ -47,12 +50,12 @@ public interface BlameLinePreProcessorFactory
|
||||
{
|
||||
|
||||
/**
|
||||
* Method description
|
||||
* Create a new {@link BlameLinePreProcessor} for the given repository.
|
||||
*
|
||||
*
|
||||
* @param repository
|
||||
* @param repository repository
|
||||
*
|
||||
* @return
|
||||
* @return {@link BlameLinePreProcessor} for the given repository
|
||||
*/
|
||||
@Override
|
||||
public BlameLinePreProcessor createPreProcessor(Repository repository);
|
||||
|
||||
Reference in New Issue
Block a user