All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.resource.DeviceResourceManager Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2004, 2023 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jface.resource;

import org.eclipse.swt.graphics.Device;
import org.eclipse.swt.graphics.Image;

/**
 * Manages SWT resources for a particular device.
 *
 * 

* IMPORTANT: in most cases clients should use a LocalResourceManager instead of a * DeviceResourceManager. To create a resource manager on a particular display, * use new LocalResourceManager(JFaceResources.getResources(myDisplay)). * DeviceResourceManager should only be used directly when managing * resources for a device other than a Display (such as a printer). *

* * @see LocalResourceManager * * @since 3.1 */ public final class DeviceResourceManager extends AbstractResourceManager { private final Device device; private Image missingImage; @Override public Device getDevice() { return device; } /** * Creates a new registry for the given device. * * @param device device to manage */ public DeviceResourceManager(Device device) { this.device = device; } @Override @SuppressWarnings("unchecked") protected R allocate(DeviceResourceDescriptor descriptor) throws DeviceResourceException { return (R) descriptor.createResource(device); } @Override protected void deallocate(Object resource, DeviceResourceDescriptor descriptor) { descriptor.destroyResource(resource); } @Override protected Image getDefaultImage() { if (missingImage == null) { missingImage = ImageDescriptor.getMissingImageDescriptor().createImage(); } return missingImage; } @Override public void dispose() { super.dispose(); if (missingImage != null) { missingImage.dispose(); missingImage = null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy