blob: 861c300641e4b4cbe60224df82cc7b7e700d0d15 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 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 v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.core.protocol;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Click Text</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.core.protocol.ClickText#getStart <em>Start</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.protocol.ClickText#getEnd <em>End</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.protocol.ClickText#getButton <em>Button</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getClickText()
* @model
* @generated
*/
public interface ClickText extends ElementCommand {
/**
* Returns the value of the '<em><b>Start</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Start</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Start</em>' attribute.
* @see #setStart(String)
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getClickText_Start()
* @model default=""
* @generated
*/
String getStart();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.protocol.ClickText#getStart <em>Start</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Start</em>' attribute.
* @see #getStart()
* @generated
*/
void setStart(String value);
/**
* Returns the value of the '<em><b>End</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>End</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>End</em>' attribute.
* @see #setEnd(String)
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getClickText_End()
* @model default=""
* @generated
*/
String getEnd();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.protocol.ClickText#getEnd <em>End</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>End</em>' attribute.
* @see #getEnd()
* @generated
*/
void setEnd(String value);
/**
* Returns the value of the '<em><b>Button</b></em>' attribute.
* The default value is <code>"left"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Button</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Button</em>' attribute.
* @see #setButton(String)
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getClickText_Button()
* @model default="left"
* @generated
*/
String getButton();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.protocol.ClickText#getButton <em>Button</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Button</em>' attribute.
* @see #getButton()
* @generated
*/
void setButton(String value);
} // ClickText