org.syrup
Interface LogEntry

All Known Subinterfaces:
LogEntryTemplate
All Known Implementing Classes:
LogEntryImpl, LogEntryTemplateImpl

public interface LogEntry

Encapsulates a Log entry.

Author:
Robbert van Dalen

Field Summary
static java.lang.String COPYRIGHT
           
static int DONE
          Indicates a done Task event.
static int ENDED
          Indicates a ended Task event.
static int EVENT
          Indicates a generic event.
static int FAILED
          Indicates a failed Task event.
static int GOT
          Indicates a got Task event.
static int IN_1
          Indicates an event related to the first input.
static int IN_2
          Indicates an event related to the second input.
static int MATCHED
          Indicates a matched Task event.
static int NEW
          Indicates a new Task event.
static int OUT_1
          Indicates an event related to the first output.
static int OUT_2
          Indicates an event related to the second output.
static int PANIC
          Indicates a generic panic event.
static int RESET
          Indicates a resetted Task event.
static int REWIRED
          Indicates a rewired Link event.
static int STARTED
          Indicates a started Task event.
static int STOPPED
          Indicates a stopped Task event.
 
Method Summary
 int event()
           
 java.lang.String key()
           
 long time()
           
 java.lang.String worker()
           
 

Field Detail

COPYRIGHT

public static final java.lang.String COPYRIGHT
See Also:
Constant Field Values

IN_1

public static final int IN_1
Indicates an event related to the first input.

See Also:
Constant Field Values

IN_2

public static final int IN_2
Indicates an event related to the second input.

See Also:
Constant Field Values

OUT_1

public static final int OUT_1
Indicates an event related to the first output.

See Also:
Constant Field Values

OUT_2

public static final int OUT_2
Indicates an event related to the second output.

See Also:
Constant Field Values

EVENT

public static final int EVENT
Indicates a generic event.

See Also:
Constant Field Values

NEW

public static final int NEW
Indicates a new Task event.

See Also:
Constant Field Values

STARTED

public static final int STARTED
Indicates a started Task event.

See Also:
Constant Field Values

ENDED

public static final int ENDED
Indicates a ended Task event.

See Also:
Constant Field Values

STOPPED

public static final int STOPPED
Indicates a stopped Task event.

See Also:
Constant Field Values

DONE

public static final int DONE
Indicates a done Task event.

See Also:
Constant Field Values

FAILED

public static final int FAILED
Indicates a failed Task event.

See Also:
Constant Field Values

GOT

public static final int GOT
Indicates a got Task event.

See Also:
Constant Field Values

MATCHED

public static final int MATCHED
Indicates a matched Task event.

See Also:
Constant Field Values

REWIRED

public static final int REWIRED
Indicates a rewired Link event.

See Also:
Constant Field Values

RESET

public static final int RESET
Indicates a resetted Task event.

See Also:
Constant Field Values

PANIC

public static final int PANIC
Indicates a generic panic event.

See Also:
Constant Field Values
Method Detail

time

public long time()

key

public java.lang.String key()

event

public int event()

worker

public java.lang.String worker()