blob: b7ba6d2b26b091e0aba77a4dacd766290b1ff2d6 [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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.sam.agree.agreement;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Pattern</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.opencert.sam.agree.agreement.Pattern#getPremise <em>Premise</em>}</li>
* <li>{@link org.eclipse.opencert.sam.agree.agreement.Pattern#getEvent <em>Event</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.opencert.sam.agree.agreement.AgreementPackage#getPattern()
* @model
* @generated
*/
public interface Pattern extends EObject
{
/**
* Returns the value of the '<em><b>Premise</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Premise</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>Premise</em>' containment reference.
* @see #setPremise(nonfunctional)
* @see org.eclipse.opencert.sam.agree.agreement.AgreementPackage#getPattern_Premise()
* @model containment="true"
* @generated
*/
nonfunctional getPremise();
/**
* Sets the value of the '{@link org.eclipse.opencert.sam.agree.agreement.Pattern#getPremise <em>Premise</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Premise</em>' containment reference.
* @see #getPremise()
* @generated
*/
void setPremise(nonfunctional value);
/**
* Returns the value of the '<em><b>Event</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Event</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Event</em>' attribute.
* @see #setEvent(String)
* @see org.eclipse.opencert.sam.agree.agreement.AgreementPackage#getPattern_Event()
* @model
* @generated
*/
String getEvent();
/**
* Sets the value of the '{@link org.eclipse.opencert.sam.agree.agreement.Pattern#getEvent <em>Event</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event</em>' attribute.
* @see #getEvent()
* @generated
*/
void setEvent(String value);
} // Pattern