oracle.owb.intelligence
Interface DerivationListener


public interface DerivationListener

Convenience interface to keep the Public API tidy.


Field Summary
static int MT_DEBUG
          Tag indicating message is a debug message.
static int MT_ERROR
          Tag indicating message is a error message.
static int MT_INFO
          Tag indicating message is a information message.
static int MT_WARNING
          Tag indicating message is a warning message.
 
Method Summary
 void message(int msgType, java.lang.String msg)
          Method message() is called during derivation with derivation messages.
 

Field Detail

MT_DEBUG

public static final int MT_DEBUG
Tag indicating message is a debug message.

MT_INFO

public static final int MT_INFO
Tag indicating message is a information message.

MT_WARNING

public static final int MT_WARNING
Tag indicating message is a warning message.

MT_ERROR

public static final int MT_ERROR
Tag indicating message is a error message.
Method Detail

message

public void message(int msgType,
                    java.lang.String msg)
Method message() is called during derivation with derivation messages.
Parameters:
msgType - Message type, one of MT_DEBUG, MT_INFO, MT_WARNING or MT_ERROR.
msg - String containing derivation message.