Loading...
Searching...
No Matches
TransitionExitEvent.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
16public final class TransitionExitEvent {
17
18
19 /*package*/ final long from;
20
21 /*package*/ final long to;
22
27 long from,
28 long to) {
29 this.from = from;
30 this.to = to;
31 }
32
46 public long getFrom() {
47 return from;
48 }
49
63 public long getTo() {
64 return to;
65 }
66
67 @Override
68 public String toString() {
69 return "TransitionExitEvent{" +
70 "from=" + from +
71 "," + "to=" + to +
72 "}";
73 }
74
75}