]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/icons/ImageUtil.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / icons / ImageUtil.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.ui.icons;
13
14 import org.eclipse.jface.resource.ImageDescriptor;
15 import org.simantics.db.ReadGraph;
16 import org.simantics.db.Resource;
17 import org.simantics.db.exception.AdaptionException;
18 import org.simantics.db.exception.DatabaseException;
19 import org.simantics.utils.datastructures.cache.ProvisionException;
20
21 /**
22  * @author Tuukka Lehtonen
23  */
24 public final class ImageUtil {
25
26     /**
27      * @param graph
28      * @param resource
29      * @return
30      * @throws DatabaseException
31      * @throws ProvisionException if adapted ImageDescriptorProvider fails to
32      *         provide the actual descriptor for some reason
33      */
34     public static ImageDescriptor adaptImageDescriptor(ReadGraph graph, Resource resource) throws DatabaseException {
35         try {
36             ImageDescriptorProvider provider = graph.adapt(resource, ImageDescriptorProvider.class);
37             return provider.get();
38         } catch (AdaptionException e) {
39             return null;
40         }
41     }
42
43 }