Exemplo n.º 1
0
 public List<Breakpoint> getBreakpoints() {
   return SessionService.getBreakpoints(this);
 }
Exemplo n.º 2
0
 public List<Event> getEvents() {
   return SessionService.getEvents(this);
 }
Exemplo n.º 3
0
 public List<Method> getEndingMethods() {
   return SessionService.getEndingMethods(this);
 }
Exemplo n.º 4
0
 public List<Type> getTypes() {
   return SessionService.getTypes(this);
 }
Exemplo n.º 5
0
 public void stop() throws Exception {
   SessionService.finish(this);
 }
Exemplo n.º 6
0
 public void create() throws Exception {
   SessionService.create(this);
 }
Exemplo n.º 7
0
 public void start() throws Exception {
   SessionService.start(this);
 }