Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: addd1accfd93fd35a7f414eab99fcaaa4b582490 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.net4j.util.om.trace;

/**
 * @author Eike Stepper
 */
public interface OMTraceHandlerEvent
{
  public long getTimeStamp();

  public OMTracer getTracer();

  public Class getContext();

  public String getMessage();

  public Throwable getThrowable();
}

Back to the top