/** * <copyright> * * Copyright (c) 2007 IBM Corporation 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: * IBM - Initial API and implementation * * </copyright> * * $Id: DataBindingPlugin.java,v 1.2 2009/05/23 11:11:33 tschindl Exp $ */ package org.eclipse.emf.databinding; import org.eclipse.emf.common.EMFPlugin; import org.eclipse.emf.common.util.ResourceLocator; /** * <p><b>PROVISIONAL:</b> This API is subject to arbitrary change, including renaming or removal.</p> * This is the central singleton for the Data Binding plugin. */ public final class DataBindingPlugin extends EMFPlugin { /** * Keep track of the singleton. */ public static final DataBindingPlugin INSTANCE = new DataBindingPlugin(); /** * Keep track of the singleton. */ private static Implementation plugin; /** * Create the instance. */ public DataBindingPlugin() { super(new ResourceLocator []{}); } /** * Returns the singleton instance of the Eclipse plugin. * @return the singleton instance. */ @Override public ResourceLocator getPluginResourceLocator() { return plugin; } /** * Returns the singleton instance of the Eclipse plugin. * @return the singleton instance. */ public static Implementation getPlugin() { return plugin; } /** * The actual implementation of the Eclipse <b>Plugin</b>. */ public static class Implementation extends EclipsePlugin { /** * Creates an instance. */ public Implementation() { super(); // Remember the static instance. // plugin = this; } } }