Skip to content

Commit

Permalink
Remove apiNote since Javadoc doesn't accept it
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed May 21, 2017
1 parent 761ea0e commit 73ff81a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package xsbt

import xsbti.compile.Output
import scala.reflect.{ internal => sri }
import scala.reflect.internal.{ util => sriu }
import scala.tools.nsc.{ Global, Settings }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ public interface ReadStamps {

/**
* Retrieves the stamp associated with a given internal source.
* <p>
* Note that the internal source has to be a source under compilation.
*
* @param internalSource The source file under compilation.
* @return The stamp for the file.
* @apiNote The internal source has to be a source under compilation.
* @see xsbti.AnalysisCallback#startSource(File)
*/
public Stamp source(File internalSource);
Expand Down Expand Up @@ -63,11 +64,11 @@ public interface ReadStamps {

/**
* Returns a map of all the stamps associated with product files.
*
* @apiNote The returned map can be empty if no compilation has happened yet
* (e.g. compile analysis is empty).
* <p>
* Note that the returned map can be empty if no compilation has happened yet.
*
* @return A map of product files to stamps.
* (e.g. compile analysis is empty).
* @see xsbti.compile.analysis.ReadStamps#product(File)
*/
public Map<File, Stamp> getAllProductStamps();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,19 @@
public interface SourceInfo {
/**
* Returns the reported problems by the Java or Scala compiler.
* <p>
* Note that a reported problem is a problem that has been shown to the end user.
*
* @return The compiler reported problems.
* @apiNote A reported problem is a problem that has been shown to the end user.
*/
public Problem[] getReportedProblems();

/**
* Returns the unreported problems by the Java or Scala compiler.
* <p>
* Note that an unreported problem is a problem that has not been shown to the end user.
*
* @return The compiler reported problems.
* @apiNote An unreported problem is a problem that has not been shown to the end user.
*/
public Problem[] getUnreportedProblems();
}
Expand Down

0 comments on commit 73ff81a

Please sign in to comment.