/** * <copyright> * </copyright> * * $Id$ */ package com.openMap1.mapper; import java.util.Map; import org.eclipse.emf.common.util.DiagnosticChain; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Parameter Class</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.openMap1.mapper.ParameterClass#getClassName <em>Class Name</em>}</li> * <li>{@link com.openMap1.mapper.ParameterClass#getPackageName <em>Package Name</em>}</li> * <li>{@link com.openMap1.mapper.ParameterClass#getParameterIndex <em>Parameter Index</em>}</li> * </ul> * </p> * * @see com.openMap1.mapper.MapperPackage#getParameterClass() * @model * @generated */ public interface ParameterClass extends EObject { /** * Returns the value of the '<em><b>Class Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Class Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Class Name</em>' attribute. * @see #setClassName(String) * @see com.openMap1.mapper.MapperPackage#getParameterClass_ClassName() * @model * @generated */ String getClassName(); /** * Sets the value of the '{@link com.openMap1.mapper.ParameterClass#getClassName <em>Class Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Class Name</em>' attribute. * @see #getClassName() * @generated */ void setClassName(String value); /** * Returns the value of the '<em><b>Package Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Package Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Package Name</em>' attribute. * @see #setPackageName(String) * @see com.openMap1.mapper.MapperPackage#getParameterClass_PackageName() * @model * @generated */ String getPackageName(); /** * Sets the value of the '{@link com.openMap1.mapper.ParameterClass#getPackageName <em>Package Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Package Name</em>' attribute. * @see #getPackageName() * @generated */ void setPackageName(String value); /** * Returns the value of the '<em><b>Parameter Index</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameter Index</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parameter Index</em>' attribute. * @see #setParameterIndex(int) * @see com.openMap1.mapper.MapperPackage#getParameterClass_ParameterIndex() * @model * @generated */ int getParameterIndex(); /** * Sets the value of the '{@link com.openMap1.mapper.ParameterClass#getParameterIndex <em>Parameter Index</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parameter Index</em>' attribute. * @see #getParameterIndex() * @generated */ void setParameterIndex(int value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model diagnosticsDataType="com.openMap1.mapper.DiagnosticChain" contextDataType="com.openMap1.mapper.Map<?, ?>" * @generated */ boolean classIsInClassModel(DiagnosticChain diagnostics, Map<?, ?> context); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model diagnosticsDataType="com.openMap1.mapper.DiagnosticChain" contextDataType="com.openMap1.mapper.Map<?, ?>" * @generated */ boolean objectMappingExists(DiagnosticChain diagnostics, Map<?, ?> context); /** * @return class name preceded by the package name and '.', if it is nonempty */ public String getQualifiedClassName(); } // ParameterClass