com.google.gwt.logging.shared
Class SerializableLogRecord

java.lang.Object
  extended by com.google.gwt.logging.shared.SerializableLogRecord
All Implemented Interfaces:
IsSerializable

public class SerializableLogRecord
extends java.lang.Object
implements IsSerializable

A representation of a LogRecord which can be used by GWT RPC. In addition to the fact that LogRecord is not serializable, it has different implementations on the server and client side, so we cannot pass it over the wire directly.


Constructor Summary
SerializableLogRecord(java.util.logging.LogRecord lr)
          Create a new SerializableLogRecord from a LogRecord.
 
Method Summary
 java.util.logging.LogRecord getLogRecord()
          Create a new LogRecord from this SerializableLogRecord.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerializableLogRecord

public SerializableLogRecord(java.util.logging.LogRecord lr)
Create a new SerializableLogRecord from a LogRecord.

Method Detail

getLogRecord

public java.util.logging.LogRecord getLogRecord()
Create a new LogRecord from this SerializableLogRecord.