Skip to content

Commit

Permalink
o Fixed javadoc
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@983198 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
bentmann committed Aug 7, 2010
1 parent a9a19a7 commit 33a8140
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public Map<String, String> getSystemProperties()
* Sets the system properties to use for interpolation and profile activation. The system properties are collected
* from the runtime environment like {@link System#getProperties()} and environment variables.
*
* @param executionProperties The execution properties, may be {@code null}.
* @param systemProperties The system properties, may be {@code null}.
* @return This context, never {@code null}.
*/
@SuppressWarnings( "unchecked" )
Expand All @@ -125,7 +125,7 @@ public DefaultProfileActivationContext setSystemProperties( Properties systemPro
* Sets the system properties to use for interpolation and profile activation. The system properties are collected
* from the runtime environment like {@link System#getProperties()} and environment variables.
*
* @param executionProperties The execution properties, may be {@code null}.
* @param systemProperties The system properties, may be {@code null}.
* @return This context, never {@code null}.
*/
public DefaultProfileActivationContext setSystemProperties( Map<String, String> systemProperties )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import org.apache.maven.model.building.ModelSource;

/**
* Resolves a POM from its coordinates. During the build process, the {@link ModelBuilder} will add any relevant
* repositories to the model resolver. In other words, the model resolver is stateful and should not be reused across
* multiple model building requests.
* Resolves a POM from its coordinates. During the build process, the
* {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. In
* other words, the model resolver is stateful and should not be reused across multiple model building requests.
*
* @author Benjamin Bentmann
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public class DefaultSettingsProblem
* Creates a new problem with the specified message and exception.
*
* @param message The message describing the problem, may be {@code null}.
* @param severity The severity level of the problem, may be {@code null} to default to {@link Severity#ERROR}.
* @param severity The severity level of the problem, may be {@code null} to default to
* {@link SettingsProblem.Severity#ERROR}.
* @param source A hint about the source of the problem like a file path, may be {@code null}.
* @param lineNumber The one-based index of the line containing the problem or {@code -1} if unknown.
* @param columnNumber The one-based index of the column containing the problem or {@code -1} if unknown.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class SettingsBuildingException
/**
* Creates a new exception with the specified problems.
*
* @param modelId The identifier of the model that could not be built, may be {@code null}.
* @param problems The problems that causes this exception, may be {@code null}.
*/
public SettingsBuildingException( List<SettingsProblem> problems )
Expand Down

0 comments on commit 33a8140

Please sign in to comment.