1 /** 2 * <copyright> 3 * 4 * Copyright (c) 2002-2004 IBM Corporation and others. 5 * All rights reserved. This program and the accompanying materials 6 * are made available under the terms of the Eclipse Public License v1.0 7 * which accompanies this distribution, and is available at 8 * http://www.eclipse.org/legal/epl-v10.html 9 * 10 * Contributors: 11 * IBM - Initial API and implementation 12 * 13 * </copyright> 14 * 15 * $Id: FunctionPair.java,v 1.3 2005/06/08 06:21:43 nickb Exp $ 16 */ 17 package org.eclipse.emf.mapping; 18 19 20 import org.eclipse.emf.ecore.EOperation; 21 22 23 /** 24 * <!-- begin-user-doc --> 25 * A representation of the model object '<em><b>Function Pair</b></em>'. 26 * <!-- end-user-doc --> 27 * 28 * <p> 29 * The following features are supported: 30 * <ul> 31 * <li>{@link org.eclipse.emf.mapping.FunctionPair#getIn2out <em>In2out</em>}</li> 32 * <li>{@link org.eclipse.emf.mapping.FunctionPair#getOut2in <em>Out2in</em>}</li> 33 * </ul> 34 * </p> 35 * 36 * @see org.eclipse.emf.mapping.MappingPackage#getFunctionPair() 37 * @model 38 * @generated 39 */ 40 public interface FunctionPair extends TypeConverter 41 { 42 /** 43 * Returns the value of the '<em><b>In2out</b></em>' reference. 44 * <!-- begin-user-doc --> 45 * <p> 46 * If the meaning of the '<em>In2out</em>' reference isn't clear, 47 * there really should be more of a description here... 48 * </p> 49 * <!-- end-user-doc --> 50 * @return the value of the '<em>In2out</em>' reference. 51 * @see #setIn2out(EOperation) 52 * @see org.eclipse.emf.mapping.MappingPackage#getFunctionPair_In2out() 53 * @model 54 * @generated 55 */ 56 EOperation getIn2out(); 57 58 /** 59 * Sets the value of the '{@link org.eclipse.emf.mapping.FunctionPair#getIn2out <em>In2out</em>}' reference. 60 * <!-- begin-user-doc --> 61 * <!-- end-user-doc --> 62 * @param value the new value of the '<em>In2out</em>' reference. 63 * @see #getIn2out() 64 * @generated 65 */ 66 void setIn2out(EOperation value); 67 68 /** 69 * Returns the value of the '<em><b>Out2in</b></em>' reference. 70 * <!-- begin-user-doc --> 71 * <p> 72 * If the meaning of the '<em>Out2in</em>' reference isn't clear, 73 * there really should be more of a description here... 74 * </p> 75 * <!-- end-user-doc --> 76 * @return the value of the '<em>Out2in</em>' reference. 77 * @see #setOut2in(EOperation) 78 * @see org.eclipse.emf.mapping.MappingPackage#getFunctionPair_Out2in() 79 * @model 80 * @generated 81 */ 82 EOperation getOut2in(); 83 84 /** 85 * Sets the value of the '{@link org.eclipse.emf.mapping.FunctionPair#getOut2in <em>Out2in</em>}' reference. 86 * <!-- begin-user-doc --> 87 * <!-- end-user-doc --> 88 * @param value the new value of the '<em>Out2in</em>' reference. 89 * @see #getOut2in() 90 * @generated 91 */ 92 void setOut2in(EOperation value); 93 94 } // FunctionPair 95