Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: e83e2194fc72e57e9d50c52ea7d335de4184fd4a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
  
                                                                
                                                                   
                                                                        
                                                           
                                            





                                                   
                                          





                                                   
                                                         


























                                                                             
/*
 * Copyright (c) 2014 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.version.tests;

import org.eclipse.oomph.util.OomphPlugin;

import org.eclipse.emf.common.util.ResourceLocator;

/**
 * @author Eike Stepper
 */
public final class VersionTestsPlugin extends OomphPlugin
{
  public static final VersionTestsPlugin INSTANCE = new VersionTestsPlugin();

  private static Implementation plugin;

  public VersionTestsPlugin()
  {
    super(new ResourceLocator[] {});
  }

  @Override
  public ResourceLocator getPluginResourceLocator()
  {
    return plugin;
  }

  /**
   * @author Eike Stepper
   */
  public static class Implementation extends EclipsePlugin
  {
    public Implementation()
    {
      plugin = this;
    }
  }
}

Back to the top