Skip to content

Commit 3622c04

Browse files
committed
add some javadoc for new parameter
Signed-off-by: olivier lamy <[email protected]>
1 parent 15031cc commit 3622c04

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

plexus-java/src/main/java/org/codehaus/plexus/languages/java/jpms/ResolvePathsRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,11 +235,22 @@ public boolean isIncludeAllProviders()
235235
return includeAllProviders;
236236
}
237237

238+
/**
239+
*
240+
* @return <code>true</code> if the result will include all static dependencies
241+
* @since 1.0.5
242+
*/
238243
public boolean isIncludeStatic()
239244
{
240245
return includeStatic;
241246
}
242247

248+
/**
249+
*
250+
* @param includeStatic <code>true</code> if the result must include all static dependencies
251+
* @return this request
252+
* @since 1.0.5
253+
*/
243254
public ResolvePathsRequest<T> setIncludeStatic( boolean includeStatic )
244255
{
245256
this.includeStatic = includeStatic;

0 commit comments

Comments
 (0)