com.android.layoutlib.api
Interface ILayoutLog


Deprecated. use LayoutLog.

@Deprecated
public interface ILayoutLog

Callback interface to display warnings/errors that happened during the computation and rendering of the layout.


Method Summary
 void error(java.lang.String message)
          Deprecated. Logs an error message.
 void error(java.lang.Throwable t)
          Deprecated. Logs an exception
 void warning(java.lang.String message)
          Deprecated. Logs a warning message.
 

Method Detail

warning

void warning(java.lang.String message)
Deprecated. 
Logs a warning message.

Parameters:
message - the message to log.

error

void error(java.lang.String message)
Deprecated. 
Logs an error message.

Parameters:
message - the message to log.

error

void error(java.lang.Throwable t)
Deprecated. 
Logs an exception

Parameters:
t - the Throwable to log.