blob: 1e2b40dfe1b59448d743a58dd211b6a91aa90968 [file] [log] [blame]
/**
* Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eugen Neufeld - initial API and implementation
*/
package org.eclipse.emf.ecp.view.spi.groupedgrid.model;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecp.view.spi.model.VContainedElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Row</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.ecp.view.spi.groupedgrid.model.VRow#getChildren <em>Children</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.ecp.view.spi.groupedgrid.model.VGroupedGridPackage#getRow()
* @model
* @generated
* @since 1.2
*/
public interface VRow extends EObject
{
/**
* Returns the value of the '<em><b>Children</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emf.ecp.view.spi.model.VContainedElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Children</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>Children</em>' containment reference list.
* @see org.eclipse.emf.ecp.view.spi.groupedgrid.model.VGroupedGridPackage#getRow_Children()
* @model containment="true"
* @generated
*/
EList<VContainedElement> getChildren();
} // VRow