Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Shutdown Plugin
Shutdown Plugin [message #1695013] Mon, 11 May 2015 11:56
Michael Kröschel is currently offline Michael KröschelFriend
Messages: 2
Registered: February 2014
Junior Member
Hi All,
I'm writing an Eclipse Plugin with a Login. When the Login falls I want the plugin to close all the Perspectives.
I already tried the following code in my activator class but it is still opening the Perspectives!
	@Override
	public void start(BundleContext bundleContext) throws Exception {
		plugin = this;		
		if(!setupServices(bundleContext))
		{
			this.shutdown();
			Activator.plugin = null;
			this.stop(bundleContext);
			Activator.refreshElements();			
			return;
		}
		setupCommands();
}

Does anyone has an Idea how to solve this Task?
THX
Michael
Previous Topic:Eclipse 3.7 Product Export Crash
Next Topic:Change build command in project template.
Goto Forum:
  


Current Time: Wed Sep 18 23:12:02 GMT 2024

Powered by FUDForum. Page generated in 0.03726 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top