blob: 61c87894927114f17e2ad86a48d23aa7801aaf74 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 SAP AG 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:
* SAP AG - initial API and implementation
******************************************************************************
* $Id: ExpressionsFactory.java,v 1.2 2011/03/05 21:52:04 auhl Exp $
*/
package persistence.expressions;
import org.eclipse.emf.ecore.EFactory;
/**
* <!-- begin-user-doc -->
* The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
* @see persistence.expressions.ExpressionsPackage
* @generated
*/
public interface ExpressionsFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ExpressionsFactory eINSTANCE = persistence.expressions.impl.ExpressionsFactoryImpl.init();
/**
* Returns a new object of class '<em>All</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>All</em>'.
* @generated
*/
All createAll();
/**
* Returns a new object of class '<em>Commit</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Commit</em>'.
* @generated
*/
Commit createCommit();
/**
* Returns a new object of class '<em>Snapshot</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Snapshot</em>'.
* @generated
*/
Snapshot createSnapshot();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ExpressionsPackage getExpressionsPackage();
} //ExpressionsFactory