Пример #1
0
        @Override
        public void onConnected(final TCFLaunch launch) {
          updateAnnotations(null, launch);
          TCFBreakpointsStatus bps = launch.getBreakpointsStatus();
          if (bps == null) return;
          bps.addListener(
              new ITCFBreakpointListener() {

                public void breakpointStatusChanged(String id) {
                  updateAnnotations(null, launch);
                }

                public void breakpointRemoved(String id) {
                  updateAnnotations(null, launch);
                }

                public void breakpointChanged(String id) {}
              });
        }