blob: 2efd7c8949ff93bb0b4fd4e5a7b125da17809664 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc 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:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.ecl.model;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.rcptt.ecl.core.Command;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Matches</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Matches#getInput <em>Input</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Matches#getValue <em>Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getMatches()
* @model annotation="http://www.eclipse.org/ecl/docs description='Checks if <code>input</code> matches to a regular expression <code>value</code>' input='Result of <code>get-property</code> command' example='get-editor TestCase1 | get-editbox | get-property value | matches \"\\\\d+\" | verify-true'"
* @generated
*/
public interface Matches extends Command {
/**
* Returns the value of the '<em><b>Input</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Input</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Input</em>' reference.
* @see #setInput(EObject)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getMatches_Input()
* @model required="true"
* @generated
*/
EObject getInput();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Matches#getInput <em>Input</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Input</em>' reference.
* @see #getInput()
* @generated
*/
void setInput(EObject value);
/**
* 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.rcptt.tesla.ecl.model.TeslaPackage#getMatches_Value()
* @model required="true"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Matches#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);
} // Matches