Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0f6d7e9b97240a10377e89af630a86521ae58c3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
 * <copyright>
 * </copyright>
 *
 * $Id: ReferenceFactory.java,v 1.1 2008-07-02 14:09:49 estepper Exp $
 */
package reference;

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 reference.ReferencePackage
 * @generated
 */
public interface ReferenceFactory extends EFactory
{
  /**
   * The singleton instance of the factory. <!-- begin-user-doc --> <!-- end-user-doc -->
   * 
   * @generated
   */
  ReferenceFactory eINSTANCE = reference.impl.ReferenceFactoryImpl.init();

  /**
   * Returns a new object of class '<em>Reference</em>'. <!-- begin-user-doc --> <!-- end-user-doc -->
   * 
   * @return a new object of class '<em>Reference</em>'.
   * @generated
   */
  Reference createReference();

  /**
   * Returns the package supported by this factory. <!-- begin-user-doc --> <!-- end-user-doc -->
   * 
   * @return the package supported by this factory.
   * @generated
   */
  ReferencePackage getReferencePackage();

} // ReferenceFactory

Back to the top