blob: 873da8b80144d1f3814b03c47c0eb971c4d693d0 [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.rcptt.ecl.core.Command;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Screenshot</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Screenshot#getMessage <em>Message</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getScreenshot()
* @model annotation=
* "http://www.eclipse.org/ecl/docs description='Takes a screenshot and attaches it to test report.' returns='Nothing.'"
* @generated
*/
public interface Screenshot extends Command {
/**
* Returns the value of the '<em><b>Message</b></em>' attribute. The default
* value is <code>""</code>. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message</em>' attribute isn't clear, there
* really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Message</em>' attribute.
* @see #setMessage(String)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getScreenshot_Message()
* @model default="" annotation=
* "http://www.eclipse.org/ecl/docs description='A message to be attached to the screenshot.'"
* @generated
*/
String getMessage();
/**
* Sets the value of the '
* {@link org.eclipse.rcptt.tesla.ecl.model.Screenshot#getMessage <em>Message</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Message</em>' attribute.
* @see #getMessage()
* @generated
*/
void setMessage(String value);
} // Screenshot