summaryrefslogtreecommitdiff
path: root/cpp/source/org/openoffice/ide/eclipse/cpp/Activator.java
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/source/org/openoffice/ide/eclipse/cpp/Activator.java')
-rw-r--r--cpp/source/org/openoffice/ide/eclipse/cpp/Activator.java78
1 files changed, 0 insertions, 78 deletions
diff --git a/cpp/source/org/openoffice/ide/eclipse/cpp/Activator.java b/cpp/source/org/openoffice/ide/eclipse/cpp/Activator.java
deleted file mode 100644
index 0033025..0000000
--- a/cpp/source/org/openoffice/ide/eclipse/cpp/Activator.java
+++ /dev/null
@@ -1,78 +0,0 @@
-/*************************************************************************
- *
- * The Contents of this file are made available subject to the terms of
- * the GNU Lesser General Public License Version 2.1
- *
- * GNU Lesser General Public License Version 2.1
- * =============================================
- * Copyright 2009 by Novell, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1, as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- *
- * The Initial Developer of the Original Code is: Cédric Bosdonnat.
- *
- * Copyright: 2009 by Novell, Inc.
- *
- * All Rights Reserved.
- *
- ************************************************************************/
-package org.openoffice.ide.eclipse.cpp;
-
-import org.eclipse.ui.plugin.AbstractUIPlugin;
-import org.osgi.framework.BundleContext;
-
-/**
- * The activator class controls the plug-in life cycle.
- */
-public class Activator extends AbstractUIPlugin {
-
- // The plug-in ID
- public static final String PLUGIN_ID = "org.openoffice.ide.eclipse.cpp"; //$NON-NLS-1$
-
- // The shared instance
- private static Activator sPlugin;
-
- /**
- * The constructor.
- */
- public Activator() {
- }
-
- /**
- * {@inheritDoc}
- */
- public void start(BundleContext pContext) throws Exception {
- super.start(pContext);
- sPlugin = this;
- }
-
- /**
- * {@inheritDoc}
- */
- public void stop(BundleContext pContext) throws Exception {
- sPlugin = null;
- super.stop(pContext);
- }
-
- /**
- * Returns the shared instance.
- *
- * @return the shared instance
- */
- public static Activator getDefault() {
- return sPlugin;
- }
-
-}