org.nasdanika.models.rules.java.JavaFactory Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.rules.java;
import org.eclipse.emf.ecore.EFactory;
/**
*
* The Factory for the model.
* It provides a create method for each non-abstract class of the model.
*
* @see org.nasdanika.models.rules.java.JavaPackage
* @generated
*/
public interface JavaFactory extends EFactory {
/**
* The singleton instance of the factory.
*
*
* @generated
*/
JavaFactory eINSTANCE = org.nasdanika.models.rules.java.impl.JavaFactoryImpl.init();
/**
* Returns a new object of class 'Compilation Unit Action'.
*
*
* @return a new object of class 'Compilation Unit Action'.
* @generated
*/
CompilationUnitAction createCompilationUnitAction();
/**
* Returns a new object of class 'Create Compilation Unit Action'.
*
*
* @return a new object of class 'Create Compilation Unit Action'.
* @generated
*/
CreateCompilationUnitAction createCreateCompilationUnitAction();
/**
* Returns a new object of class 'Delete Compilation Unit Action'.
*
*
* @return a new object of class 'Delete Compilation Unit Action'.
* @generated
*/
DeleteCompilationUnitAction createDeleteCompilationUnitAction();
/**
* Returns a new object of class 'Update Compilation Unit Action'.
*
*
* @return a new object of class 'Update Compilation Unit Action'.
* @generated
*/
UpdateCompilationUnitAction createUpdateCompilationUnitAction();
/**
* Returns the package supported by this factory.
*
*
* @return the package supported by this factory.
* @generated
*/
JavaPackage getJavaPackage();
} //JavaFactory