blob: b9d2c2e4c04262294b71b86229966b30785b8224 [file] [log] [blame]
/**
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Bertrand Daru (Mia-Software) - initial API and implementation
* Gregoire Dupe (Mia-Software) - initial API and implementation
* Emmanuelle Rouillé (Mia-Software) - Bug 352618 - To be able to use non derived facet structural features and save them values.
* Nicolas Bros (Mia-Software) - Bug 361612 - New core for new version of the Facet metamodel
*/
package org.eclipse.modisco.facet.query.java.core;
import java.util.List;
import org.eclipse.emf.ecore.EParameter;
import org.eclipse.modisco.facet.efacet.metamodel.v0_2_0.efacet.ParameterValue;
/**
* @since 0.2
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
public interface IParameterValueList2 extends List<ParameterValue> {
// This interface is a rewrite of
// org.eclipse.modisco.facet.infra.query.core.java.ParameterValueList
/**
* Return the value of the parameter with the specified name.
*
* @param name
* the name of the parameter
* @return the value, or <code>null</code> if there is no parameter with
* that name.
*/
public Object getValueByParameterName(final String name);
/**
* Return the parameter with the specified name.
*
* @param name
* the name of the parameter
* @return the parameter, or <code>null</code> if there is no parameter with
* that name.
*/
public ParameterValue getParameterValueByName(final String name);
/**
* Return the parameter corresponding to the given parameter declaration.
*
* @param parameter
* the parameter declaration
* @return the parameter, or <code>null</code> if the given parameter
* declaration is unknown.
*/
public ParameterValue getParameterValue(final EParameter parameter);
/**
* Return the value of a parameter
*
* @param parameter
* the parameter
* @return the value of the parameter
*/
public Object getValue(final EParameter parameter);
}