/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin 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:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.semanticsoft.vaaclipse.behaviour.cleanup;
import java.util.List;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.e4.ui.model.application.MAddon;
import org.eclipse.e4.ui.model.application.MApplication;
import org.eclipse.e4.ui.model.application.impl.ApplicationFactoryImpl;
public class CleanupProcessor {
@Execute
void addCleanupAddon(MApplication app) {
List<MAddon> addons = app.getAddons();
// Prevent multiple copies
for (MAddon addon : addons) {
if (addon.getContributionURI().contains("org.semanticsoft.vaaclipse.behaviour.CleanupAddon"))
return;
}
// Insert the addon into the system
MAddon cleanupAddon = ApplicationFactoryImpl.eINSTANCE.createAddon();
cleanupAddon.setElementId("CleanupAddon"); //$NON-NLS-1$
cleanupAddon.setContributionURI("bundleclass://org.semanticsoft.vaaclipse.behaviour/org.semanticsoft.vaaclipse.behaviour.cleanup.CleanupAddon"); //$NON-NLS-1$
app.getAddons().add(cleanupAddon);
}
}