/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.documentcomposition.views; import org.eclipse.core.runtime.*; import org.eclipse.core.resources.*; import org.eclipse.ui.plugin.AbstractUIPlugin; /** * The main plugin class to be used in the desktop. */ public class ViewsPlugin extends AbstractUIPlugin { //The shared instance. private static ViewsPlugin plugin; /** * The constructor. */ public ViewsPlugin(IPluginDescriptor descriptor) { super(descriptor); plugin = this; } /** * Returns the shared instance. */ public static ViewsPlugin getDefault() { return plugin; } /** * Returns the workspace instance. */ public static IWorkspace getWorkspace() { return ResourcesPlugin.getWorkspace(); } }