Remove Eclipse dependence from com.ibm.wala.cast

Remove (presumably unused) AstPlugin classes
This commit is contained in:
Manu Sridharan 2015-07-26 13:12:33 -07:00
parent 93ff020285
commit 942a3d5343
3 changed files with 1 additions and 113 deletions

View File

@ -6,8 +6,7 @@ Bundle-Version: 1.3.8.qualifier
Bundle-Activator: com.ibm.wala.cast.plugin.AstPlugin
Bundle-Vendor: IBM
Require-Bundle: com.ibm.wala.core,
com.ibm.wala.shrike,
org.eclipse.core.runtime
com.ibm.wala.shrike
Bundle-ActivationPolicy: lazy
Bundle-ClassPath: .,
lib/commons-io-2.4.jar
@ -21,7 +20,6 @@ Export-Package: com.ibm.wala.cast.analysis.typeInference,
com.ibm.wala.cast.ir.ssa.analysis,
com.ibm.wala.cast.ir.translator,
com.ibm.wala.cast.loader,
com.ibm.wala.cast.plugin,
com.ibm.wala.cast.tree,
com.ibm.wala.cast.tree.impl,
com.ibm.wala.cast.tree.pattern,

View File

@ -1,55 +0,0 @@
/******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*****************************************************************************/
package com.ibm.wala.cast.plugin;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
/**
* The main plugin class to be used in the desktop.
*/
public class AstPlugin extends Plugin {
//The shared instance.
private static AstPlugin plugin;
/**
* The constructor.
*/
public AstPlugin() {
plugin = this;
}
/**
* This method is called upon plug-in activation
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
}
/**
* This method is called when the plug-in is stopped
*/
@Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;
}
/**
* Returns the shared instance.
*/
public static AstPlugin getDefault() {
return plugin;
}
}

View File

@ -1,55 +0,0 @@
/******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*****************************************************************************/
package com.ibm.wala.cast.tree;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
/**
* The main plugin class to be used in the desktop.
*/
public class AstPlugin extends Plugin {
//The shared instance.
private static AstPlugin plugin;
/**
* The constructor.
*/
public AstPlugin() {
plugin = this;
}
/**
* This method is called upon plug-in activation
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
}
/**
* This method is called when the plug-in is stopped
*/
@Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;
}
/**
* Returns the shared instance.
*/
public static AstPlugin getDefault() {
return plugin;
}
}