Package flash.tools.debugger.events

Examples of flash.tools.debugger.events.FileListModifiedEvent


      getOrCreateIsolate(isolateIndex);
      if (putSource(swfIndex, module, bitmap, name, text,
          isolateIndex)) {
        // have we changed the list since last query
        if (!m_sourceListModified)
          addEvent(new FileListModifiedEvent());

        m_sourceListModified = true;
      }
      break;
    }

    case DMessage.InRemoveScript: {
      long module = msg.getDWord();
      int isolateId = msg.getTargetIsolate();
      Map<Integer, DModule> source = getIsolateState(isolateId).m_source;
      synchronized (source) {
        if (removeSource((int) module, isolateId)) {
          // have we changed the list since last query
          if (!m_sourceListModified)
            addEvent(new FileListModifiedEvent());

          m_sourceListModified = true; /* current source list is stale */
        }
      }
      break;
 
View Full Code Here


          // create new source file
          if (putSource(swfIndex, module, bitmap, name, text))
          {
            // have we changed the list since last query
            if (!m_sourceListModified)
              addEvent(new FileListModifiedEvent());

            m_sourceListModified = true/* current source list is stale */
          }
        }
        break;
      }

      case DMessage.InRemoveScript:
      {
        long module = msg.getDWord();
        synchronized (m_source)
        {
          if (removeSource((int)module))
          {
            // have we changed the list since last query
            if (!m_sourceListModified)
              addEvent(new FileListModifiedEvent());

            m_sourceListModified = true/* current source list is stale */
          }
        }
        break;
 
View Full Code Here

TOP

Related Classes of flash.tools.debugger.events.FileListModifiedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.