/******************************************************************************* * Copyright (c) 2014 TwelveTone LLC and others. * 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: * Steven Spungin - initial API and implementation *******************************************************************************/ package com.minres.scviewer.e4.application; import org.eclipse.e4.core.contexts.IEclipseContext; import org.eclipse.e4.ui.workbench.lifecycle.PostContextCreate; import org.eclipse.e4.ui.workbench.lifecycle.PreSave; import org.eclipse.e4.ui.workbench.lifecycle.ProcessAdditions; import org.eclipse.e4.ui.workbench.lifecycle.ProcessRemovals; /** * This is a stub implementation containing e4 LifeCycle annotated methods.
* There is a corresponding entry in plugin.xml (under the * org.eclipse.core.runtime.products' extension point) that references * this class. **/ @SuppressWarnings("restriction") public class E4LifeCycle { @PostContextCreate void postContextCreate(IEclipseContext workbenchContext) { } @PreSave void preSave(IEclipseContext workbenchContext) { } @ProcessAdditions void processAdditions(IEclipseContext workbenchContext) { } @ProcessRemovals void processRemovals(IEclipseContext workbenchContext) { } }