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