Skip to main content
summaryrefslogblamecommitdiffstats
blob: 52960f4554fa5ccf5c3b02566f47a4e678a7f338 (plain) (tree)
1
2
3
4
5
6
7
8
9
   
                                                                       






                                                                        
                               
   

                                      
                                                                 
 






                                                            


               
                                                                                      
 
/**
 * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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:
 *    Eike Stepper - initial API and implementation
 *    Simon McDuff - bug 213402
 */
package org.eclipse.emf.cdo.eresource;

import org.eclipse.emf.cdo.eresource.impl.CDOResourceFactoryImpl;

import org.eclipse.emf.ecore.resource.Resource;

/**
 * @author Eike Stepper
 */
public interface CDOResourceFactory extends Resource.Factory
{
  /**
   * @since 2.0
   */
  public static final CDOResourceFactory eINSTANCE = CDOResourceFactoryImpl.eINSTANCE;
}

Back to the top