/******************************************************************************* * Copyright © 2011, 2013 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.ide.ui.internal.deployment; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Target</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.edt.ide.ui.internal.deployment.DeploymentTarget#getParameters <em>Parameters</em>}</li> * <li>{@link org.eclipse.edt.ide.ui.internal.deployment.DeploymentTarget#getName <em>Name</em>}</li> * </ul> * </p> * * @see org.eclipse.edt.ide.ui.internal.deployment.DeploymentPackage#getDeploymentTarget() * @model extendedMetaData="name='DeploymentTarget' kind='elementOnly'" * @generated */ public interface DeploymentTarget extends EObject { /** * Returns the value of the '<em><b>Parameters</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameters</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parameters</em>' containment reference. * @see #setParameters(Parameters) * @see org.eclipse.edt.ide.ui.internal.deployment.DeploymentPackage#getDeploymentTarget_Parameters() * @model containment="true" * extendedMetaData="kind='element' name='parameters'" * @generated */ Parameters getParameters(); /** * Sets the value of the '{@link org.eclipse.edt.ide.ui.internal.deployment.DeploymentTarget#getParameters <em>Parameters</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parameters</em>' containment reference. * @see #getParameters() * @generated */ void setParameters(Parameters value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * The default value is <code>""</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Name</em>' attribute. * @see #isSetName() * @see #unsetName() * @see #setName(String) * @see org.eclipse.edt.ide.ui.internal.deployment.DeploymentPackage#getDeploymentTarget_Name() * @model default="" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='name'" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.edt.ide.ui.internal.deployment.DeploymentTarget#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #isSetName() * @see #unsetName() * @see #getName() * @generated */ void setName(String value); /** * Unsets the value of the '{@link org.eclipse.edt.ide.ui.internal.deployment.DeploymentTarget#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetName() * @see #getName() * @see #setName(String) * @generated */ void unsetName(); /** * Returns whether the value of the '{@link org.eclipse.edt.ide.ui.internal.deployment.DeploymentTarget#getName <em>Name</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Name</em>' attribute is set. * @see #unsetName() * @see #getName() * @see #setName(String) * @generated */ boolean isSetName(); } // DeploymentTarget