001 /**
002 * <copyright>
003 * </copyright>
004 *
005 * $Id$
006 */
007 package com.hammurapi.config;
008
009 import org.eclipse.emf.common.util.EList;
010
011 import org.eclipse.emf.ecore.EObject;
012
013 /**
014 * <!-- begin-user-doc -->
015 * A representation of the model object '<em><b>Constructor</b></em>'.
016 * <!-- end-user-doc -->
017 *
018 * <!-- begin-model-doc -->
019 * Constructor definition.
020 * <!-- end-model-doc -->
021 *
022 * <p>
023 * The following features are supported:
024 * <ul>
025 * <li>{@link com.hammurapi.config.Constructor#getArgument <em>Argument</em>}</li>
026 * </ul>
027 * </p>
028 *
029 * @see com.hammurapi.config.ConfigPackage#getConstructor()
030 * @model
031 * @generated
032 */
033 public interface Constructor extends EObject {
034 /**
035 * Returns the value of the '<em><b>Argument</b></em>' containment reference list.
036 * The list contents are of type {@link com.hammurapi.config.Factory}.
037 * <!-- begin-user-doc -->
038 * <!-- end-user-doc -->
039 * <!-- begin-model-doc -->
040 * Constructor arguments. Constructor shall have at least one argument because definition of a constructor with zero elements is equivalent to having no constructor definition.
041 * <!-- end-model-doc -->
042 * @return the value of the '<em>Argument</em>' containment reference list.
043 * @see com.hammurapi.config.ConfigPackage#getConstructor_Argument()
044 * @model containment="true" required="true"
045 * @generated
046 */
047 EList<Factory> getArgument();
048
049 } // Constructor