コード例 #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);
 }