blob: 19cbd5e0c02e571ceb7980d2aecdef3e6f7ebe6b [file] [log] [blame]
/**
* Copyright (c) 2011 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Fabien Giquel (Mia-Software) - design and implementation
*
*/
package org.eclipse.modisco.infra.discovery.launch;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.modisco.infra.discovery.catalog.DiscovererParameter;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Parameter Value</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.infra.discovery.launch.ParameterValue#getParameter <em>Parameter</em>}</li>
* <li>{@link org.eclipse.modisco.infra.discovery.launch.ParameterValue#getValue <em>Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.infra.discovery.launch.LaunchPackage#getParameterValue()
* @model
* @generated
*/
public interface ParameterValue extends EObject {
/**
* Returns the value of the '<em><b>Parameter</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameter</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Parameter</em>' reference.
* @see #setParameter(DiscovererParameter)
* @see org.eclipse.modisco.infra.discovery.launch.LaunchPackage#getParameterValue_Parameter()
* @model required="true"
* @generated
*/
DiscovererParameter getParameter();
/**
* Sets the value of the '{@link org.eclipse.modisco.infra.discovery.launch.ParameterValue#getParameter <em>Parameter</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parameter</em>' reference.
* @see #getParameter()
* @generated
*/
void setParameter(DiscovererParameter value);
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(Object)
* @see org.eclipse.modisco.infra.discovery.launch.LaunchPackage#getParameterValue_Value()
* @model dataType="org.eclipse.emf.facet.util.emf.core.serialization.model.serialization.ExtensibleSerializableJavaObject"
* @generated
*/
Object getValue();
/**
* Sets the value of the '{@link org.eclipse.modisco.infra.discovery.launch.ParameterValue#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(Object value);
} // ParameterValue