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