1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.browsing.ui.swt;
14 import org.eclipse.core.runtime.Plugin;
15 import org.eclipse.jface.resource.ImageDescriptor;
16 import org.osgi.framework.Bundle;
17 import org.osgi.framework.BundleContext;
18 import org.simantics.browsing.ui.swt.internal.Threads;
21 * The activator class controls the plug-in life cycle.
23 public class Activator extends Plugin {
26 public static final String PLUGIN_ID = "org.simantics.browsing.ui.swt";
28 // The shared instance
29 private static Activator plugin;
31 public static ImageDescriptor PDF_ICON;
32 public static ImageDescriptor EDIT_ICON;
33 public static ImageDescriptor HEADING1_ICON;
34 public static ImageDescriptor BOLD_ICON;
35 public static ImageDescriptor BULLETS_ICON;
45 * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
48 public void start(BundleContext context) throws Exception {
54 Bundle bundle = context.getBundle();
56 PDF_ICON = ImageDescriptor.createFromURL(bundle.getResource("icons/page_white_acrobat.png"));
57 EDIT_ICON = ImageDescriptor.createFromURL(bundle.getResource("icons/page_edit.png"));
58 HEADING1_ICON = ImageDescriptor.createFromURL(bundle.getResource("icons/text_heading_1.png"));
59 BOLD_ICON = ImageDescriptor.createFromURL(bundle.getResource("icons/text_bold.png"));
60 BULLETS_ICON = ImageDescriptor.createFromURL(bundle.getResource("icons/text_list_bullets.png"));
65 * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
68 public void stop(BundleContext context) throws Exception {
76 * Returns the shared instance
78 * @return the shared instance
80 public static Activator getDefault() {