]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/icons/GraphOrBundleImageDescriptorProvider.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / icons / GraphOrBundleImageDescriptorProvider.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.osgi.framework.Bundle;
16 import org.simantics.db.ReadGraph;
17 import org.simantics.db.Resource;
18 import org.simantics.utils.datastructures.cache.ProvisionException;
19 import org.simantics.utils.ui.BundleUtils;
20
21 /**
22  * FIXME: http://www.simantics.org/Layer0-1.0/HasModelledIcon no longer exists!
23  */
24 public class GraphOrBundleImageDescriptorProvider implements ImageDescriptorProvider {
25
26     private final Bundle    bundle;
27     private final String    path;
28     private ImageDescriptor desc;
29
30     public GraphOrBundleImageDescriptorProvider(ReadGraph graph, final Resource resource, Bundle bundle, String path) {
31         assert bundle != null;
32         assert path != null;
33         this.bundle = bundle;
34         this.path = path;
35         //System.out.println("new bundle image descriptor: " + bundle + ", " + path);
36     }
37
38     @Override
39     public ImageDescriptor get() throws ProvisionException {
40         if (desc == null) {
41             desc = BundleUtils.getImageDescriptorFromBundle(bundle, path);
42             if (desc == null)
43                 throw new ProvisionException("Could not find image in bundle '" + bundle + "' at path + '" + path + "'");
44             // desc = ImageDescriptor.getMissingImageDescriptor();
45         }
46         return desc;
47     }
48
49 }