Skip to content

Commit

Permalink
Fix JavaDoc issues in AbstractInstanceProvider.java
Browse files Browse the repository at this point in the history
  • Loading branch information
angelo-streetcontxt committed Jun 9, 2016
1 parent 993e41d commit 9dc4613
Showing 1 changed file with 9 additions and 6 deletions.
Expand Up @@ -10,6 +10,9 @@

/**
* Abstract class for ParameterResolvers providing instances for Law Tests.
*
* @param <S> Structure type
* @param <F> Data type
*/
public abstract class AbstractInstanceProvider<S, F> implements ParameterResolver {
/**
Expand Down Expand Up @@ -43,10 +46,10 @@ public abstract class AbstractInstanceProvider<S, F> implements ParameterResolve
*
* @param parameter the parameter to be resolved
* @param target the container for the target on which the {@code java.lang.reflect.Executable}
* will be invoked; may be <em>empty</em> if the {@code Executable} is a constructor
* or {@code static} method
* will be invoked; may be <em>empty</em> if the {@code Executable} is a constructor
* or {@code static} method
* @param extensionContext the extension context for the {@code Executable}
* about to be invoked
* about to be invoked
* @return {@code true} if this resolver can resolve the parameter
* @see #resolve
* @see java.lang.reflect.Parameter
Expand Down Expand Up @@ -104,10 +107,10 @@ private String getTypeArgName(final Parameter parameter, final int index) {
*
* @param parameter the parameter to be resolved
* @param target the container for the target on which the {@code java.lang.reflect.Executable}
* will be invoked; may be <em>empty</em> if the {@code Executable} is a constructor
* or {@code static} method
* will be invoked; may be <em>empty</em> if the {@code Executable} is a constructor
* or {@code static} method
* @param extensionContext the extension context for the {@code Executable}
* about to be invoked
* about to be invoked
* @return the resolved parameter object
* @see #supports
* @see java.lang.reflect.Parameter
Expand Down

0 comments on commit 9dc4613

Please sign in to comment.