org.nasdanika.html.model.app.AppFactory Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.app;
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.html.model.app.AppPackage
* @generated
*/
public interface AppFactory extends EFactory {
/**
* The singleton instance of the factory.
*
*
* @generated
*/
AppFactory eINSTANCE = org.nasdanika.html.model.app.impl.AppFactoryImpl.init();
/**
* Returns a new object of class 'Label'.
*
*
* @return a new object of class 'Label'.
* @generated
*/
Label createLabel();
/**
* Returns a new object of class 'Link'.
*
*
* @return a new object of class 'Link'.
* @generated
*/
Link createLink();
/**
* Returns a new object of class 'Page'.
*
*
* @return a new object of class 'Page'.
* @generated
*/
Page createPage();
/**
* Returns a new object of class 'Header'.
*
*
* @return a new object of class 'Header'.
* @generated
*/
Header createHeader();
/**
* Returns a new object of class 'Navigation Bar'.
*
*
* @return a new object of class 'Navigation Bar'.
* @generated
*/
NavigationBar createNavigationBar();
/**
* Returns a new object of class 'Navigation Panel'.
*
*
* @return a new object of class 'Navigation Panel'.
* @generated
*/
NavigationPanel createNavigationPanel();
/**
* Returns a new object of class 'Content Panel'.
*
*
* @return a new object of class 'Content Panel'.
* @generated
*/
ContentPanel createContentPanel();
/**
* Returns a new object of class 'Footer'.
*
*
* @return a new object of class 'Footer'.
* @generated
*/
Footer createFooter();
/**
* Returns a new object of class 'Action'.
*
*
* @return a new object of class 'Action'.
* @generated
*/
Action createAction();
/**
* Returns a new object of class 'Action Reference'.
*
*
* @return a new object of class 'Action Reference'.
* @generated
*/
ActionReference createActionReference();
/**
* Returns the package supported by this factory.
*
*
* @return the package supported by this factory.
* @generated
*/
AppPackage getAppPackage();
} //AppFactory