
org.jnario.JnarioFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jnario.standalone Show documentation
Show all versions of org.jnario.standalone Show documentation
The required libraries to execute Jnario specifications without Eclipse.
The newest version!
/*******************************************************************************
* Copyright (c) 2012 BMW Car IT 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
*******************************************************************************/
package org.jnario;
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.jnario.JnarioPackage
* @generated
*/
public interface JnarioFactory extends EFactory {
/**
* The singleton instance of the factory.
*
*
* @generated
*/
JnarioFactory eINSTANCE = org.jnario.impl.JnarioFactoryImpl.init();
/**
* Returns a new object of class 'Example Table'.
*
*
* @return a new object of class 'Example Table'.
* @generated
*/
ExampleTable createExampleTable();
/**
* Returns a new object of class 'Example Row'.
*
*
* @return a new object of class 'Example Row'.
* @generated
*/
ExampleRow createExampleRow();
/**
* Returns a new object of class 'Assertion'.
*
*
* @return a new object of class 'Assertion'.
* @generated
*/
Assertion createAssertion();
/**
* Returns a new object of class 'Example Column'.
*
*
* @return a new object of class 'Example Column'.
* @generated
*/
ExampleColumn createExampleColumn();
/**
* Returns a new object of class 'Should'.
*
*
* @return a new object of class 'Should'.
* @generated
*/
Should createShould();
/**
* Returns a new object of class 'Should Throw'.
*
*
* @return a new object of class 'Should Throw'.
* @generated
*/
ShouldThrow createShouldThrow();
/**
* Returns a new object of class 'Specification'.
*
*
* @return a new object of class 'Specification'.
* @generated
*/
Specification createSpecification();
/**
* Returns a new object of class 'Mock Literal'.
*
*
* @return a new object of class 'Mock Literal'.
* @generated
*/
MockLiteral createMockLiteral();
/**
* Returns a new object of class 'Example Cell'.
*
*
* @return a new object of class 'Example Cell'.
* @generated
*/
ExampleCell createExampleCell();
/**
* Returns the package supported by this factory.
*
*
* @return the package supported by this factory.
* @generated
*/
JnarioPackage getJnarioPackage();
} //JnarioFactory
© 2015 - 2025 Weber Informatics LLC | Privacy Policy