blob: eb63e04f38aa4da8461754130b447d8468963725 [file] [log] [blame]
/*******************************************************************************
* 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 <steven@spungin.tv> - initial API and implementation
*******************************************************************************/
@@PACKAGE_DECLARATION@@
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.<br />
* There is a corresponding entry in <em>plugin.xml</em> (under the
* <em>org.eclipse.core.runtime.products' extension point</em>) that references
* this class.
**/
@SuppressWarnings("restriction")
public class @@CLASS_NAME@@ {
@PostContextCreate
void postContextCreate(IEclipseContext workbenchContext) {
}
@PreSave
void preSave(IEclipseContext workbenchContext) {
}
@ProcessAdditions
void processAdditions(IEclipseContext workbenchContext) {
}
@ProcessRemovals
void processRemovals(IEclipseContext workbenchContext) {
}
}