| java.lang.Object com.sun.satsa.jcrmic.utils.Notifier
Notifier | public class Notifier (Code) | | This class is responsible for reporting any messages (error, warning,
progress, banner and status messages) during the compilation.
|
Method Summary | |
public void | error(String msg) Prints error message. | public void | error(String msg, String arg1) Prints error message. | public void | error(String msg, String arg1, String arg2) Prints error message. | public void | error(String msg, String arg1, String arg2, String arg3) Prints error message. | public static String | getString(String key) Return the string value of a named resource in the rmic.properties
resource bundle. | public static String | getText(String key) Returns the string for given key. | public static String | getText(String key, int num) Returns the message. | public static String | getText(String key, String arg0) Returns the message. | public static String | getText(String key, String arg0, String arg1) Returns the message. | public static String | getText(String key, String arg0, String arg1, String arg2) Returns the message. | public void | output(String msg) Output a message. |
Notifier | public Notifier(OutputStream out)(Code) | | Constructor.
Parameters: out - output stream |
error | public void error(String msg)(Code) | | Prints error message.
Parameters: msg - the message |
error | public void error(String msg, String arg1)(Code) | | Prints error message.
Parameters: msg - the message Parameters: arg1 - argument |
error | public void error(String msg, String arg1, String arg2)(Code) | | Prints error message.
Parameters: msg - the message Parameters: arg1 - argument Parameters: arg2 - argument |
error | public void error(String msg, String arg1, String arg2, String arg3)(Code) | | Prints error message.
Parameters: msg - the message Parameters: arg1 - argument Parameters: arg2 - argument Parameters: arg3 - argument |
getString | public static String getString(String key)(Code) | | Return the string value of a named resource in the rmic.properties
resource bundle. If the resource is not found, null is returned.
Parameters: key - resource name the value |
getText | public static String getText(String key)(Code) | | Returns the string for given key.
Parameters: key - the key the string |
getText | public static String getText(String key, int num)(Code) | | Returns the message.
Parameters: key - the key Parameters: num - parameter the message |
getText | public static String getText(String key, String arg0)(Code) | | Returns the message.
Parameters: key - the key Parameters: arg0 - parameter the message |
getText | public static String getText(String key, String arg0, String arg1)(Code) | | Returns the message.
Parameters: key - the key Parameters: arg0 - parameter Parameters: arg1 - parameter the message |
getText | public static String getText(String key, String arg0, String arg1, String arg2)(Code) | | Returns the message.
Parameters: key - the key Parameters: arg0 - parameter Parameters: arg1 - parameter Parameters: arg2 - parameter the message |
output | public void output(String msg)(Code) | | Output a message.
Parameters: msg - the message |
|
|