blob: 1cbf825205b4e8121510f11680612c8e07c5d6aa [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.ecl.data.apache.poi.commands;
import org.eclipse.emf.common.util.EList;
import org.eclipse.rcptt.ecl.core.Command;
import org.eclipse.rcptt.ecl.data.objects.Table;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Get Table Cells</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.ecl.data.apache.poi.commands.GetTableCells#getTable <em>Table</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.data.apache.poi.commands.GetTableCells#getCells <em>Cells</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.ecl.data.apache.poi.commands.CommandsPackage#getGetTableCells()
* @model annotation="http://www.eclipse.org/ecl/docs description='Gets cell values by excel names and writes them into the output pipe' returns='Cell values' example='read-excel-file \"workspace:/excel/devices.xlsx\" \"Supported devices\"\n\t| get-table-cells A1 | eq \"Device Name\" | verify-true'"
* @generated
*/
public interface GetTableCells extends Command {
/**
* Returns the value of the '<em><b>Table</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Table</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Table</em>' reference.
* @see #setTable(Table)
* @see org.eclipse.rcptt.ecl.data.apache.poi.commands.CommandsPackage#getGetTableCells_Table()
* @model required="true"
* annotation="http://www.eclipse.org/ecl/docs description='Table to get cells from'"
* @generated
*/
Table getTable();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.data.apache.poi.commands.GetTableCells#getTable <em>Table</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Table</em>' reference.
* @see #getTable()
* @generated
*/
void setTable(Table value);
/**
* Returns the value of the '<em><b>Cells</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Cells</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Cells</em>' attribute list.
* @see org.eclipse.rcptt.ecl.data.apache.poi.commands.CommandsPackage#getGetTableCells_Cells()
* @model required="true"
* annotation="http://www.eclipse.org/ecl/docs description='Cell names'"
* @generated
*/
EList<String> getCells();
} // GetTableCells