Package org.apache.maven.plugins.javadoc
Class StaleHelper
- java.lang.Object
-
- org.apache.maven.plugins.javadoc.StaleHelper
-
public class StaleHelper extends java.lang.ObjectHelper class to compute and write data used to detect a stale javadoc.
-
-
Constructor Summary
Constructors Constructor Description StaleHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetStaleData(org.codehaus.plexus.util.cli.Commandline cmd)Compute the data used to detect a stale javadocprivate static longlastmod(java.nio.file.Path p)private static java.lang.Stringunquote(java.lang.String s)private static java.util.Collection<java.nio.file.Path>walk(java.nio.file.Path dir)static voidwriteStaleData(org.codehaus.plexus.util.cli.Commandline cmd, java.nio.file.Path path)Write the data used to detect a stale javadoc
-
-
-
Method Detail
-
getStaleData
public static java.lang.String getStaleData(org.codehaus.plexus.util.cli.Commandline cmd) throws org.apache.maven.reporting.MavenReportExceptionCompute the data used to detect a stale javadoc- Parameters:
cmd- the command line- Returns:
- the stale data
- Throws:
org.apache.maven.reporting.MavenReportException- if an error occurs
-
writeStaleData
public static void writeStaleData(org.codehaus.plexus.util.cli.Commandline cmd, java.nio.file.Path path) throws org.apache.maven.reporting.MavenReportExceptionWrite the data used to detect a stale javadoc- Parameters:
cmd- the command linepath- the stale data path- Throws:
org.apache.maven.reporting.MavenReportException- if an error occurs
-
walk
private static java.util.Collection<java.nio.file.Path> walk(java.nio.file.Path dir)
-
unquote
private static java.lang.String unquote(java.lang.String s)
-
lastmod
private static long lastmod(java.nio.file.Path p)
-
-