|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Problems

An interface for a collection of Problem objects, with multiple overloaded methods for adding errors, warnings, and
informational messages.
| Method Summary | |
|---|---|
void |
addError(I18n message,
Object... params)
Add an error message with the parameters that should be used when localizing the message. |
void |
addError(int code,
I18n message,
Object... params)
Add an error message with the parameters that should be used when localizing the message. |
void |
addError(int code,
String resource,
String location,
I18n message,
Object... params)
Add an error message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addError(String resource,
String location,
I18n message,
Object... params)
Add an error message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addError(Throwable throwable,
I18n message,
Object... params)
Add an error exception and message with the parameters that should be used when localizing the message. |
void |
addError(Throwable throwable,
int code,
I18n message,
Object... params)
Add an error exception and message with the parameters that should be used when localizing the message. |
void |
addError(Throwable throwable,
int code,
String resource,
String location,
I18n message,
Object... params)
Add an error exception and message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addError(Throwable throwable,
String resource,
String location,
I18n message,
Object... params)
Add an error exception and message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addInfo(I18n message,
Object... params)
Add a informational message with the parameters that should be used when localizing the message. |
void |
addInfo(int code,
I18n message,
Object... params)
Add a informational message with the parameters that should be used when localizing the message. |
void |
addInfo(int code,
String resource,
String location,
I18n message,
Object... params)
Add an informational message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addInfo(String resource,
String location,
I18n message,
Object... params)
Add an informational message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addInfo(Throwable throwable,
I18n message,
Object... params)
Add an informational exception and message with the parameters that should be used when localizing the message. |
void |
addInfo(Throwable throwable,
int code,
I18n message,
Object... params)
Add a informational exception and message with the parameters that should be used when localizing the message. |
void |
addInfo(Throwable throwable,
int code,
String resource,
String location,
I18n message,
Object... params)
Add an informational exception and message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addInfo(Throwable throwable,
String resource,
String location,
I18n message,
Object... params)
Add an informational exception and message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addWarning(I18n message,
Object... params)
Add a warning message with the parameters that should be used when localizing the message. |
void |
addWarning(int code,
I18n message,
Object... params)
Add a warning message with the parameters that should be used when localizing the message. |
void |
addWarning(int code,
String resource,
String location,
I18n message,
Object... params)
Add a warning message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addWarning(String resource,
String location,
I18n message,
Object... params)
Add a warning message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addWarning(Throwable throwable,
I18n message,
Object... params)
Add a warning exception and message with the parameters that should be used when localizing the message. |
void |
addWarning(Throwable throwable,
int code,
I18n message,
Object... params)
Add a warning exception and message with the parameters that should be used when localizing the message. |
void |
addWarning(Throwable throwable,
int code,
String resource,
String location,
I18n message,
Object... params)
Add a warning exception and message with a description of the resource, its location, and the parameters that should be used when localizing the message |
void |
addWarning(Throwable throwable,
String resource,
String location,
I18n message,
Object... params)
Add a warning exception and message with a description of the resource, its location, and the parameters that should be used when localizing the message |
boolean |
hasErrors()
Determine if there is at least one error in this collection. |
boolean |
hasInfo()
Determine if there is at least one informational problem in this collection. |
boolean |
hasProblems()
Determine if there are problems in this collection. |
boolean |
hasWarnings()
Determine if there is at least one warning in this collection. |
boolean |
isEmpty()
Determine if this collection is empty. |
Iterator<Problem> |
iterator()
|
int |
size()
Get the number of problems that are in this collection |
| Method Detail |
|---|
void addError(I18n message,
Object... params)
message - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(Throwable throwable,
I18n message,
Object... params)
throwable - the exception that represents the error; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(String resource,
String location,
I18n message,
Object... params)
resource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(Throwable throwable,
String resource,
String location,
I18n message,
Object... params)
throwable - the exception that represents the error; may be nullresource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(int code,
I18n message,
Object... params)
code - the error codemessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(Throwable throwable,
int code,
I18n message,
Object... params)
throwable - the exception that represents the error; may be nullcode - the error codemessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(int code,
String resource,
String location,
I18n message,
Object... params)
code - the error coderesource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addError(Throwable throwable,
int code,
String resource,
String location,
I18n message,
Object... params)
throwable - the exception that represents the error; may be nullcode - the error coderesource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(I18n message,
Object... params)
message - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(Throwable throwable,
I18n message,
Object... params)
throwable - the exception that represents the error; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(String resource,
String location,
I18n message,
Object... params)
resource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(Throwable throwable,
String resource,
String location,
I18n message,
Object... params)
throwable - the exception that represents the warning; may be nullresource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(int code,
I18n message,
Object... params)
code - the problem codemessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(Throwable throwable,
int code,
I18n message,
Object... params)
throwable - the exception that represents the warning; may be nullcode - the problem codemessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(int code,
String resource,
String location,
I18n message,
Object... params)
code - the problem coderesource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addWarning(Throwable throwable,
int code,
String resource,
String location,
I18n message,
Object... params)
throwable - the exception that represents the warning; may be nullcode - the problem coderesource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(I18n message,
Object... params)
message - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(Throwable throwable,
I18n message,
Object... params)
throwable - the exception that represents the warning; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(String resource,
String location,
I18n message,
Object... params)
resource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(Throwable throwable,
String resource,
String location,
I18n message,
Object... params)
throwable - the exception that represents the problem; may be nullresource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(int code,
I18n message,
Object... params)
code - the problem codemessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(Throwable throwable,
int code,
I18n message,
Object... params)
throwable - the exception that represents the warning; may be nullcode - the problem codemessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(int code,
String resource,
String location,
I18n message,
Object... params)
code - the problem coderesource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the message
void addInfo(Throwable throwable,
int code,
String resource,
String location,
I18n message,
Object... params)
throwable - the exception that represents the problem; may be nullcode - the problem coderesource - the description of the resource; may be nulllocation - the location of the resource; may be nullmessage - the internationalized message describing the problemparams - the values for the parameters in the messageint size()
hasProblems(),
isEmpty()boolean isEmpty()
hasProblems(),
size()boolean hasProblems()
isEmpty(),
size()boolean hasErrors()
boolean hasWarnings()
boolean hasInfo()
Iterator<Problem> iterator()
iterator in interface Iterable<Problem>Iterable.iterator()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||