blob: 211d64435e6dcf4a8506315cee47fb726fcc67cc [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011-2014 itemis, See4sys 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:
* See4sys - Initial API and implementation
* itemis - [392426] Avoid to have multiple instances of same custom adapter factory
* itemis - [447193] Enable transient item providers to be created through adapter factories
*
* </copyright>
*/
package org.eclipse.sphinx.examples.hummingbird10.ide.ui.providers;
import org.eclipse.emf.edit.provider.ComposedAdapterFactory;
public class Hummingbird10ItemProviderAdapterFactory extends ComposedAdapterFactory {
/**
* Singleton instance.
*/
public static final Hummingbird10ItemProviderAdapterFactory INSTANCE = new Hummingbird10ItemProviderAdapterFactory();
public Hummingbird10ItemProviderAdapterFactory() {
super(ComposedAdapterFactory.Descriptor.Registry.INSTANCE);
addAdapterFactory(new ExtendedHummingbird10ItemProviderAdapterFactory());
}
}