blob: f6e870ca75c63ff4212bb09cd07986f64a109535 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ecl.platform.ui.commands;
import org.eclipse.rcptt.ecl.core.Command;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Save Screenshot</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.ecl.platform.ui.commands.SaveScreenshot#getOut <em>Out</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.ecl.platform.ui.commands.CommandsPackage#getSaveScreenshot()
* @model annotation="http://www.eclipse.org/ecl/docs description='Saves the screenshot.' returns='Nothing' example='get-eclipse-window | get-object | save-screenshot [substitute-variables \"${workspace_loc}/images/actual.png\"]'"
* @generated
*/
public interface SaveScreenshot extends Command {
/**
* Returns the value of the '<em><b>Out</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Out</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Out</em>' attribute.
* @see #setOut(String)
* @see org.eclipse.rcptt.ecl.platform.ui.commands.CommandsPackage#getSaveScreenshot_Out()
* @model
* @generated
*/
String getOut();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.platform.ui.commands.SaveScreenshot#getOut <em>Out</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Out</em>' attribute.
* @see #getOut()
* @generated
*/
void setOut(String value);
} // SaveScreenshot