Examples of destroyImage()


Examples of org.eclipse.jface.resource.LocalResourceManager.destroyImage()

  public synchronized boolean markFinished(Image image, Display display) {
    checkHashMaps();
    AbstractImageDescriptor desc = (AbstractImageDescriptor)descriptors.get(image);
    if (desc != null) {
      LocalResourceManager resourceManager = manager.getResourceManager(display);
      resourceManager.destroyImage(desc);
      if (resourceManager.find(desc) == null) {
        descriptors.remove(image);
        validateHashMaps();
      }
      return true;
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.