blob: ffa309a16be268255e4a6cf3e8cdaee2c924b03c [file] [log] [blame]
/*
* Copyright (c) 2015 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.internal.jreinfo;
import org.eclipse.oomph.internal.util.UtilPlugin;
import org.eclipse.oomph.util.OomphPlugin;
import org.eclipse.emf.common.util.ResourceLocator;
/**
* @author Eike Stepper
*/
public final class JREInfoPlugin extends OomphPlugin
{
public static final JREInfoPlugin INSTANCE = new JREInfoPlugin();
private static Implementation plugin;
public JREInfoPlugin()
{
super(new ResourceLocator[] { UtilPlugin.INSTANCE });
}
@Override
public ResourceLocator getPluginResourceLocator()
{
return plugin;
}
/**
* @author Eike Stepper
*/
public static class Implementation extends EclipsePlugin
{
public Implementation()
{
plugin = this;
}
}
}