o Made QDox happy

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@804900 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-08-17 08:40:48 +00:00
parent eb8b7072a8
commit 7f02ae07d2
1 changed files with 6 additions and 6 deletions

View File

@ -32,12 +32,12 @@ public interface ModelProblem
/** /**
* The different severity levels for a problem, in decreasing order. * The different severity levels for a problem, in decreasing order.
*/ */
public enum Severity enum Severity
{ {
FATAL, // FATAL, //
ERROR, // ERROR, //
WARNING, // WARNING; //
} }
@ -48,27 +48,27 @@ public enum Severity
* *
* @return The hint about the source of the problem, never {@code null}. * @return The hint about the source of the problem, never {@code null}.
*/ */
public String getSource(); String getSource();
/** /**
* Gets the exception that caused this problem (if any). * Gets the exception that caused this problem (if any).
* *
* @return The exception that caused this problem or {@code null} if not applicable. * @return The exception that caused this problem or {@code null} if not applicable.
*/ */
public Exception getException(); Exception getException();
/** /**
* Gets the message that describes this problem. * Gets the message that describes this problem.
* *
* @return The message describing this problem, never {@code null}. * @return The message describing this problem, never {@code null}.
*/ */
public String getMessage(); String getMessage();
/** /**
* Gets the severity level of this problem. * Gets the severity level of this problem.
* *
* @return The severity level of this problem, never {@code null}. * @return The severity level of this problem, never {@code null}.
*/ */
public Severity getSeverity(); Severity getSeverity();
} }