A C D E F G I M O P R S T U W

A

AbstractAlertReporter - Class in org.millscript.commons.alert.reporters
This class provides a skeletal AlertReporter implementation, to make reduce duplication of code between concrete implementations.
AbstractAlertReporter() - Constructor for class org.millscript.commons.alert.reporters.AbstractAlertReporter
 
Alert - Exception in org.millscript.commons.alert
This class represents an alert and is used in combination with a normal exception to indicate a abnormal condition in the system.
Alert(String) - Constructor for exception org.millscript.commons.alert.Alert
Constructs a new alert with the specified complaint.
Alert(String, String) - Constructor for exception org.millscript.commons.alert.Alert
Constructs a new alert with the specified complaint and explanation.
Alert(String, Alert) - Constructor for exception org.millscript.commons.alert.Alert
Constructs a new alert with the specified complaint and alert cause.
Alert(String, Throwable) - Constructor for exception org.millscript.commons.alert.Alert
Constructs a new alert with the specified complaint and throwable cause.
AlertDecorator - Interface in org.millscript.commons.alert
This interface describes an alert decorator, which provides information to decorate an alert with.
AlertOrigin - Interface in org.millscript.commons.alert
This interface describes methods for providing the origin information for an Alert.
AlertReporter - Interface in org.millscript.commons.alert
This interface describes methods for providing the origin information for an Alert.

C

ClassCastAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a ClassCastException has been thrown.
ClassCastAlert() - Constructor for exception org.millscript.commons.alert.alerts.ClassCastAlert
Constructs a new class cast alert with no explanation.
ClassCastAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.ClassCastAlert
Constructs a new class cast alert with the specified explanation.
ClassCastAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.ClassCastAlert
Constructs a new alert with the specified complaint and explanation.
ClassNotFoundAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a ClassNotFoundException has been thrown.
ClassNotFoundAlert() - Constructor for exception org.millscript.commons.alert.alerts.ClassNotFoundAlert
Constructs a new class not found alert with no explanation.
ClassNotFoundAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.ClassNotFoundAlert
Constructs a new class not found alert with the specified explanation.
ClassNotFoundAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.ClassNotFoundAlert
Constructs a new alert with the specified complaint and explanation.
culprit(String, boolean) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a boolean as the culprit.
culprit(String, byte) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a byte as the culprit.
culprit(String, char) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a char as the culprit.
culprit(String, double) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a double as the culprit.
culprit(String, float) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a float as the culprit.
culprit(String, int) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with an int as the culprit.
culprit(String, long) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a long as the culprit.
culprit(String, Object) - Method in exception org.millscript.commons.alert.Alert
Attach a new culprit to this alert, with a general object as the culprit.
Culprit - Class in org.millscript.commons.alert
This class represents an individual culprit in a mishap.
Culprit(String, Object) - Constructor for class org.millscript.commons.alert.Culprit
Creates a new culprit, with the specified type and value.
culpritCastType(Class) - Method in exception org.millscript.commons.alert.alerts.ClassCastAlert
 
culpritCharset(String) - Method in exception org.millscript.commons.alert.alerts.UnsupportedCharacterSetAlert
 
culpritClass(String) - Method in exception org.millscript.commons.alert.alerts.ClassNotFoundAlert
 
culpritClass(Class) - Method in exception org.millscript.commons.alert.alerts.IllegalAccessAlert
 
culpritClass(String) - Method in exception org.millscript.commons.alert.alerts.IllegalAccessAlert
 
culpritClass(Class) - Method in exception org.millscript.commons.alert.alerts.InstantiationAlert
 
culpritClass(String) - Method in exception org.millscript.commons.alert.alerts.InstantiationAlert
 
culpritField(Field) - Method in exception org.millscript.commons.alert.alerts.IllegalAccessAlert
 
culpritField(String) - Method in exception org.millscript.commons.alert.alerts.IllegalAccessAlert
 
culpritFile(File) - Method in exception org.millscript.commons.alert.alerts.IOAlert
 
culpritMethod(Method) - Method in exception org.millscript.commons.alert.alerts.IllegalAccessAlert
 
culpritMethod(String) - Method in exception org.millscript.commons.alert.alerts.IllegalAccessAlert
 
culpritObject(Object) - Method in exception org.millscript.commons.alert.alerts.ClassCastAlert
 
culpritURI(URI) - Method in exception org.millscript.commons.alert.alerts.IOAlert
 

D

decorate(AlertDecorator) - Method in exception org.millscript.commons.alert.Alert
Decorates this alert with the information from the supplied decorator.
decorate(Object) - Method in exception org.millscript.commons.alert.Alert
Decorates this alert with information from the supplied object.
decorate(Alert) - Method in interface org.millscript.commons.alert.AlertDecorator
Decorates the supplied alert with information for this decorator.

E

escape() - Method in exception org.millscript.commons.alert.Alert
Reports this alert as an escape, by throwing it wrapped in an escape exception.
EscapeException - Exception in org.millscript.commons.alert
Thrown specifically to escape to the top-level.
EscapeException(Alert) - Constructor for exception org.millscript.commons.alert.EscapeException
Constructs a new exception for the specified alert.

F

Fault - Exception in org.millscript.commons.alert.alerts
This class represents an internal fault alert and is used in combination with a normal exception to indicate a abnormal internal condition in the system.
Fault() - Constructor for exception org.millscript.commons.alert.alerts.Fault
Constructs a new fault alert with no explanation.
Fault(String) - Constructor for exception org.millscript.commons.alert.alerts.Fault
Constructs a new fault alert with the specified explanation.
Fault(String, String) - Constructor for exception org.millscript.commons.alert.alerts.Fault
Constructs a new alert with the specified complaint and explanation.

G

getAlert() - Method in exception org.millscript.commons.alert.EscapeException
Returns the alert that caused this exception.
getComplaint() - Method in exception org.millscript.commons.alert.Alert
Returns this alerts complaint.
getCulprits() - Method in exception org.millscript.commons.alert.Alert
Returns this alerts culprits.
getLineNumber() - Method in interface org.millscript.commons.alert.AlertOrigin
Returns the line number within the origin that the alert should be reported with.
getMessage() - Method in exception org.millscript.commons.alert.Alert
 
getOrigin() - Method in interface org.millscript.commons.alert.AlertOrigin
Returns the origin for the alert.
getParentAlert() - Method in exception org.millscript.commons.alert.Alert
Returns the Alert that caused this Alert to be generated.
getParentThrowable() - Method in exception org.millscript.commons.alert.Alert
Returns the Throwable that caused this Alert to be generated.
getPhase() - Method in exception org.millscript.commons.alert.Alert
Returns the phase this Alert occured in.
getReason() - Method in exception org.millscript.commons.alert.Alert
Returns the reason for this Alerts complaint
getType() - Method in class org.millscript.commons.alert.Culprit
Returns this culprits type.
getValue() - Method in class org.millscript.commons.alert.Culprit
Returns this culprits value.

I

IllegalAccessAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a IllegalAccessException has been thrown.
IllegalAccessAlert() - Constructor for exception org.millscript.commons.alert.alerts.IllegalAccessAlert
Constructs a new illegal access alert with no explanation.
IllegalAccessAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.IllegalAccessAlert
Constructs a new illegal access alert with the specified explanation.
IllegalAccessAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.IllegalAccessAlert
Constructs a new alert with the specified complaint and explanation.
IllegalArgumentAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a IllegalArgumentException has been thrown.
IllegalArgumentAlert() - Constructor for exception org.millscript.commons.alert.alerts.IllegalArgumentAlert
Constructs a new illegal access alert with no explanation.
IllegalArgumentAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.IllegalArgumentAlert
Constructs a new illegal access alert with the specified explanation.
IllegalArgumentAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.IllegalArgumentAlert
Constructs a new alert with the specified complaint and explanation.
InstantiationAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a InstantiationException has been thrown.
InstantiationAlert() - Constructor for exception org.millscript.commons.alert.alerts.InstantiationAlert
Constructs a new instantiation alert with no explanation.
InstantiationAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.InstantiationAlert
Constructs a new instantiation alert with the specified explanation.
InstantiationAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.InstantiationAlert
Constructs a new alert with the specified complaint and explanation.
INTERNAL - Static variable in class org.millscript.commons.alert.Phase
For problems during internal error checking.
IOAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a IOException has been thrown.
IOAlert() - Constructor for exception org.millscript.commons.alert.alerts.IOAlert
Constructs a new I/O alert with no explanation.
IOAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.IOAlert
Constructs a new I/O alert with the specified explanation.
IOAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.IOAlert
Constructs a new alert with the specified complaint and explanation.
isMishap() - Method in exception org.millscript.commons.alert.Alert
Returns the mishap indicator flag, true if this Alert is a mishap and false otherwise.

M

mishap() - Method in exception org.millscript.commons.alert.Alert
Marks this alert as a mishap and throws itself.
MISHAP_REPORTER - Static variable in class org.millscript.commons.alert.reporters.StandardMishapAlertReporter
A convenience StandardMishapAlertReporter instance for applications to use.

O

org.millscript.commons.alert - package org.millscript.commons.alert
This package provides an improved exception, called an Alert.
org.millscript.commons.alert.alerts - package org.millscript.commons.alert.alerts
This package contains general alerts which mirror their related Java exception.
org.millscript.commons.alert.reporters - package org.millscript.commons.alert.reporters
 
origin(AlertOrigin) - Method in exception org.millscript.commons.alert.Alert
Decorates this alert with origin information from the supplied alert origin.

P

Phase - Class in org.millscript.commons.alert
This class represents the phase during which an alert occurs.
Phase(String) - Constructor for class org.millscript.commons.alert.Phase
Constructs a new phase, with the specified phase name.

R

remishap() - Method in exception org.millscript.commons.alert.Alert
Reports this alert as a mishap, by throwing it as an exception.
report(AlertReporter) - Method in exception org.millscript.commons.alert.Alert
Reports this alert to the specified reporter as a mishap.
report(Alert) - Method in interface org.millscript.commons.alert.AlertReporter
Reports the specified Alert in the appropriate manner.
report(Alert) - Method in class org.millscript.commons.alert.reporters.AbstractAlertReporter
 
reportComplaint(String) - Method in class org.millscript.commons.alert.reporters.AbstractAlertReporter
Reports the specified Culprit.
reportComplaint(String) - Method in class org.millscript.commons.alert.reporters.StandardMishapAlertReporter
 
reportComplaint(String) - Method in class org.millscript.commons.alert.reporters.StandardWarningAlertReporter
 
reportCulprit(Culprit) - Method in class org.millscript.commons.alert.reporters.AbstractAlertReporter
Reports the specified Culprit.

S

setContext(String, int) - Method in interface org.millscript.commons.alert.AlertOrigin
Sets the context for the decorating an alert.
setLineNumber(int) - Method in interface org.millscript.commons.alert.AlertOrigin
Sets the line number to decorate an alert with.
setOrigin(String) - Method in interface org.millscript.commons.alert.AlertOrigin
Sets the origin message to decorate an alet with.
setParentAlert(Alert) - Method in exception org.millscript.commons.alert.Alert
Sets the parent alert for this alert.
setParentThrowable(Throwable) - Method in exception org.millscript.commons.alert.Alert
Sets the parent throwable for this alert.
setPhase(Phase) - Method in exception org.millscript.commons.alert.Alert
Sets the phase this alert occured in.
StandardMishapAlertReporter - Class in org.millscript.commons.alert.reporters
This class provides a standard Alert reporter for mishaps, that outputs everything to the standard error stream.
StandardMishapAlertReporter() - Constructor for class org.millscript.commons.alert.reporters.StandardMishapAlertReporter
Constructs a new StandardMishapAlertReporter.
StandardWarningAlertReporter - Class in org.millscript.commons.alert.reporters
This class provides a standard Alert reporter for warningd, that outputs everything to the standard error stream.
StandardWarningAlertReporter() - Constructor for class org.millscript.commons.alert.reporters.StandardWarningAlertReporter
Constructs a new StandardMishapAlertReporter.

T

toString() - Method in exception org.millscript.commons.alert.Alert
 
toString() - Method in class org.millscript.commons.alert.Culprit
 
toString() - Method in exception org.millscript.commons.alert.EscapeException
 

U

unexpectedEndOfFile() - Static method in exception org.millscript.commons.alert.alerts.IOAlert
 
Unimplemented - Exception in org.millscript.commons.alert.alerts
This class represents an unimplemented feature alert.
Unimplemented() - Constructor for exception org.millscript.commons.alert.alerts.Unimplemented
Constructs a new fault alert with no explanation.
Unimplemented(String) - Constructor for exception org.millscript.commons.alert.alerts.Unimplemented
Constructs a new fault alert with the specified explanation.
Unimplemented(String, String) - Constructor for exception org.millscript.commons.alert.alerts.Unimplemented
Constructs a new alert with the specified complaint and explanation.
UnsupportedCharacterSetAlert - Exception in org.millscript.commons.alert.alerts
This class implements an Alert for use in situations like where a UnsupportedCharsetException has been thrown.
UnsupportedCharacterSetAlert() - Constructor for exception org.millscript.commons.alert.alerts.UnsupportedCharacterSetAlert
Constructs a new unsupported character set alert with no explanation.
UnsupportedCharacterSetAlert(String) - Constructor for exception org.millscript.commons.alert.alerts.UnsupportedCharacterSetAlert
Constructs a new unsupported character set alert with the specified explanation.
UnsupportedCharacterSetAlert(String, String) - Constructor for exception org.millscript.commons.alert.alerts.UnsupportedCharacterSetAlert
Constructs a new alert with the specified complaint and explanation.

W

WARNING_REPORTER - Static variable in class org.millscript.commons.alert.reporters.StandardWarningAlertReporter
A convenience StandardMishapAlertReporter instance for applications to use.

A C D E F G I M O P R S T U W

Copyright © 2005-2007 Open World Ltd. All Rights Reserved.