/** * <copyright> * * Copyright (c) 2010 SAP AG. * 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: * Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation * * </copyright> */ package org.eclipse.bpmn2; import java.util.List; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Data Grid Row</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.bpmn2.DataGridRow#getIndex <em>Index</em>}</li> * <li>{@link org.eclipse.bpmn2.DataGridRow#getField <em>Field</em>}</li> * </ul> * </p> * * @see org.eclipse.bpmn2.Bpmn2Package#getDataGridRow() * @model * @generated */ public interface DataGridRow extends BaseElement { /** * Returns the value of the '<em><b>Index</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Index</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Index</em>' attribute. * @see #setIndex(int) * @see org.eclipse.bpmn2.Bpmn2Package#getDataGridRow_Index() * @model required="true" * @generated */ int getIndex(); /** * Sets the value of the '{@link org.eclipse.bpmn2.DataGridRow#getIndex <em>Index</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Index</em>' attribute. * @see #getIndex() * @generated */ void setIndex(int value); /** * Returns the value of the '<em><b>Field</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.bpmn2.DataGridField}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Field</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Field</em>' containment reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getDataGridRow_Field() * @model containment="true" * @generated */ List<DataGridField> getField(); } // DataGridRow