/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.metamodels.wsdl.http; 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 org.teiid.designer.metamodels.wsdl.http.HttpPackage * @generated * * @since 8.0 */ public interface HttpFactory extends EFactory { /** * The singleton instance of the factory. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ HttpFactory eINSTANCE = new org.teiid.designer.metamodels.wsdl.http.impl.HttpFactoryImpl(); /** * Returns a new object of class '<em>Address</em>'. <!-- begin-user-doc --> <!-- end-user-doc --> * * @return a new object of class '<em>Address</em>'. * @generated */ HttpAddress createHttpAddress(); /** * Returns a new object of class '<em>Binding</em>'. <!-- begin-user-doc --> <!-- end-user-doc --> * * @return a new object of class '<em>Binding</em>'. * @generated */ HttpBinding createHttpBinding(); /** * Returns a new object of class '<em>Operation</em>'. <!-- begin-user-doc --> <!-- end-user-doc --> * * @return a new object of class '<em>Operation</em>'. * @generated */ HttpOperation createHttpOperation(); /** * Returns the package supported by this factory. <!-- begin-user-doc --> <!-- end-user-doc --> * * @return the package supported by this factory. * @generated */ HttpPackage getHttpPackage(); // NO_UCD } // HttpFactory