Package org.eclipse.core.filebuffers

Examples of org.eclipse.core.filebuffers.IFileBufferManager.disconnectFileStore()


    try {
      info.fTextFileBuffer.releaseSynchronizationContext();
      if (info.fTextFileBufferLocationKind != null)
        manager.disconnect(info.fTextFileBuffer.getLocation(), info.fTextFileBufferLocationKind, getProgressMonitor());
      else
        manager.disconnectFileStore(info.fTextFileBuffer.getFileStore(), getProgressMonitor());
    } catch (CoreException x) {
      handleCoreException(x, "FileDocumentProvider.disposeElementInfo"); //$NON-NLS-1$
    }
  }
View Full Code Here


    try {
      info.fTextFileBuffer.releaseSynchronizationContext();
      if (info.fTextFileBufferLocationKind != null)
        manager.disconnect(info.fTextFileBuffer.getLocation(), info.fTextFileBufferLocationKind, getProgressMonitor());
      else
        manager.disconnectFileStore(info.fTextFileBuffer.getFileStore(), getProgressMonitor());
    } catch (CoreException x) {
      handleCoreException(x, "FileDocumentProvider.disposeElementInfo"); //$NON-NLS-1$
    }
  }
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.