blob: 4bdde8ad5d6d6e62f8408c758bae8c15f096f194 [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 v1.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;
import org.eclipse.rcptt.tesla.core.protocol.raw.Response;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Text Selection Response</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.core.protocol.TextSelectionResponse#getX <em>X</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.protocol.TextSelectionResponse#getY <em>Y</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.protocol.TextSelectionResponse#getText <em>Text</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getTextSelectionResponse()
* @model
* @generated
*/
public interface TextSelectionResponse extends Response {
/**
* Returns the value of the '<em><b>X</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>X</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>X</em>' attribute.
* @see #setX(Integer)
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getTextSelectionResponse_X()
* @model
* @generated
*/
Integer getX();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.protocol.TextSelectionResponse#getX <em>X</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>X</em>' attribute.
* @see #getX()
* @generated
*/
void setX(Integer value);
/**
* Returns the value of the '<em><b>Y</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Y</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Y</em>' attribute.
* @see #setY(Integer)
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getTextSelectionResponse_Y()
* @model
* @generated
*/
Integer getY();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.protocol.TextSelectionResponse#getY <em>Y</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Y</em>' attribute.
* @see #getY()
* @generated
*/
void setY(Integer value);
/**
* Returns the value of the '<em><b>Text</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' attribute.
* @see #setText(String)
* @see org.eclipse.rcptt.tesla.core.protocol.ProtocolPackage#getTextSelectionResponse_Text()
* @model
* @generated
*/
String getText();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.protocol.TextSelectionResponse#getText <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' attribute.
* @see #getText()
* @generated
*/
void setText(String value);
} // TextSelectionResponse