com.isti.util
Interface ErrorMsgMgrIntf

All Known Implementing Classes:
AddrPortListMgr, ClientLogViaCfgProps, ErrorMessageMgr, FileDataMonitor, IstiXmlLoader, IstiXmlUtils, LogFileViaCfgProps, XmlConfigLoader

public interface ErrorMsgMgrIntf

Interface ErrorMsgMgrIntf specifies methods implemented in 'ErrorMessageMgr' class.


Method Summary
 void clearErrorMessageString()
          Clears any current error message.
 void clearFetchedErrorMessage()
          Clears the current error message only if it has been fetched (via the 'getErrorMessageString()' method).
 boolean getErrorMessageFlag()
          Returns the status of the error message.
 java.lang.String getErrorMessageString()
          Returns the current error message (if any).
 boolean getUnfetchedMessageFlag()
          Returns the "unfetched" status of the error message.
 

Method Detail

getErrorMessageFlag

boolean getErrorMessageFlag()
Returns the status of the error message.

Returns:
true if an error message is set; false if not.

getErrorMessageString

java.lang.String getErrorMessageString()
Returns the current error message (if any).

Returns:
The current error message, or null if no errors have occurred.

clearErrorMessageString

void clearErrorMessageString()
Clears any current error message.


clearFetchedErrorMessage

void clearFetchedErrorMessage()
Clears the current error message only if it has been fetched (via the 'getErrorMessageString()' method).


getUnfetchedMessageFlag

boolean getUnfetchedMessageFlag()
Returns the "unfetched" status of the error message.

Returns:
true if an error message is set and it has not been fetched (via the 'getErrorMessageString()' method); false if not.