Examples of VFSUpdate


Examples of org.gjt.sp.jedit.msg.VFSUpdate

      synchronized(vfsUpdateLock)
      {
        for(int i = 0; i < vfsUpdates.size(); i++)
        {
          VFSUpdate msg = (VFSUpdate)vfsUpdates
            .get(i);
          if(msg.getPath().equals(path))
          {
            // don't send two updates
            // for the same path
            return;
          }
        }

        vfsUpdates.add(new VFSUpdate(path));

        if(vfsUpdates.size() == 1)
        {
          // we were the first to add an update;
          // add update sending runnable to AWT
View Full Code Here

Examples of org.gjt.sp.jedit.msg.VFSUpdate

  //{{{ handleMessage() method
  public void handleMessage(EBMessage msg)
  {
    if(msg instanceof VFSUpdate)
    {
      VFSUpdate vmsg = (VFSUpdate)msg;
      maybeReload(vmsg.getPath());
    }
  } //}}}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.