/******************************************************************************* * Copyright (c) 2007 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.jst.javaee.core; import java.util.List; /** * * A representation of the model object 'Param Value'. * * * * * * This type is a general type that can be used to declare * parameter/value lists. * * @since Java EE 5 * * * *

* The following features are supported: *

*

* * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getParamValue() * @extends JavaEEObject * @generated */ public interface ParamValue extends JavaEEObject { /** * Returns the value of the 'Descriptions' containment reference list. * The list contents are of type {@link org.eclipse.jst.javaee.core.Description}. * *

* If the meaning of the 'Descriptions' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Descriptions' containment reference list. * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getParamValue_Descriptions() * @generated */ List getDescriptions(); /** * Returns the value of the 'Param Name' attribute. * * * * * * The param-name element contains the name of a * parameter. * * @since Java EE 5 * * * @return the value of the 'Param Name' attribute. * @see #setParamName(String) * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getParamValue_ParamName() * @generated */ String getParamName(); /** * Sets the value of the '{@link org.eclipse.jst.javaee.core.ParamValue#getParamName Param Name}' attribute. * * * @param value the new value of the 'Param Name' attribute. * @see #getParamName() * @generated */ void setParamName(String value); /** * Returns the value of the 'Param Value' attribute. * * * * * * The param-value element contains the value of a * parameter. * * @since Java EE 5 * * * @return the value of the 'Param Value' attribute. * @see #setParamValue(String) * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getParamValue_ParamValue() * @generated */ String getParamValue(); /** * Sets the value of the '{@link org.eclipse.jst.javaee.core.ParamValue#getParamValue Param Value}' attribute. * * * @param value the new value of the 'Param Value' attribute. * @see #getParamValue() * @generated */ void setParamValue(String value); /** * Returns the value of the 'Id' attribute. * *

* If the meaning of the 'Id' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Id' attribute. * @see #setId(String) * @see org.eclipse.jst.javaee.core.internal.metadata.JavaeePackage#getParamValue_Id() * @generated */ String getId(); /** * Sets the value of the '{@link org.eclipse.jst.javaee.core.ParamValue#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); } // ParamValue