1 /*******************************************************************************
2 * Copyright (c) 2012 Association for Decentralized Information Management in
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.document.ui;
14 import org.eclipse.jface.resource.ImageDescriptor;
15 import org.eclipse.ui.plugin.AbstractUIPlugin;
16 import org.osgi.framework.Bundle;
17 import org.osgi.framework.BundleContext;
20 * The activator class controls the plug-in life cycle
22 public class Activator extends AbstractUIPlugin {
25 public static final String PLUGIN_ID = "org.simantics.document.ui"; //$NON-NLS-1$
27 // The shared instance
28 private static Activator plugin;
30 public ImageDescriptor DOCUMENT_DECORATION_ICON;
32 public ImageDescriptor cross;
33 public ImageDescriptor clock_red;
43 * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
45 public void start(BundleContext context) throws Exception {
51 Bundle bundle = context.getBundle();
53 DOCUMENT_DECORATION_ICON = ImageDescriptor.createFromURL(bundle.getResource("icons/document_decoration.png"));
54 cross = ImageDescriptor.createFromURL(bundle.getResource("icons/silk_small/cross.png"));
55 clock_red = ImageDescriptor.createFromURL(bundle.getResource("icons/silk_small/clock_red.png"));
61 * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
63 public void stop(BundleContext context) throws Exception {
69 * Returns the shared instance
71 * @return the shared instance
73 public static Activator getDefault() {