blob: b68afa183c6818671ffe01b4a10f3a11c29b3bd1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* 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
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.opencert.evm.evidspec.evidence;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.opencert.infra.properties.property.Property;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Value</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.opencert.evm.evidspec.evidence.Value#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.opencert.evm.evidspec.evidence.Value#getPropertyReference <em>Property Reference</em>}</li>
* <li>{@link org.eclipse.opencert.evm.evidspec.evidence.Value#getName <em>Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.opencert.evm.evidspec.evidence.EvidencePackage#getValue()
* @model
* @extends CDOObject
* @generated
*/
public interface Value extends CDOObject {
/**
* 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(String)
* @see org.eclipse.opencert.evm.evidspec.evidence.EvidencePackage#getValue_Value()
* @model
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.opencert.evm.evidspec.evidence.Value#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(String value);
/**
* Returns the value of the '<em><b>Property Reference</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Property Reference</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Property Reference</em>' reference.
* @see #setPropertyReference(Property)
* @see org.eclipse.opencert.evm.evidspec.evidence.EvidencePackage#getValue_PropertyReference()
* @model
* @generated
*/
Property getPropertyReference();
/**
* Sets the value of the '{@link org.eclipse.opencert.evm.evidspec.evidence.Value#getPropertyReference <em>Property Reference</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Property Reference</em>' reference.
* @see #getPropertyReference()
* @generated
*/
void setPropertyReference(Property value);
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- 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 #setName(String)
* @see org.eclipse.opencert.evm.evidspec.evidence.EvidencePackage#getValue_Name()
* @model required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.opencert.evm.evidspec.evidence.Value#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // Value