blob: 647b641a3331f723fdcbbb7dd1e2c0c4aed2578f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH 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:
* neilmack - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.emfstore.core.internal;
import org.eclipse.emf.emfstore.internal.client.model.ESWorkspaceProviderImpl;
/**
* @author neilmack
*
*/
public abstract class ECPEMFUtils {
/**
* Helper method to get the instance of the {@link ESWorkspaceProviderImpl}.
*
* @return the {@link ESWorkspaceProviderImpl}
* @since 1.5
*/
public static ESWorkspaceProviderImpl getESWorkspaceProviderInstance() {
return Activator.getESWorkspaceProviderInstance();
}
}