/******************************************************************************* * Copyright (c) 2011 Guillaume Hillairet. * 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: * Guillaume Hillairet - initial API and implementation *******************************************************************************/ package com.emf4sw.rdf; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Alt</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.emf4sw.rdf.RDFAlt#getElements <em>Elements</em>}</li> * </ul> * </p> * * @see com.emf4sw.rdf.RDFPackage#getRDFAlt() * @model * @generated */ public interface RDFAlt extends RDFSContainer { /** * Returns the value of the '<em><b>Elements</b></em>' reference list. * The list contents are of type {@link com.emf4sw.rdf.Node}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Elements</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Elements</em>' reference list. * @see com.emf4sw.rdf.RDFPackage#getRDFAlt_Elements() * @model * @generated */ EList<Node> getElements(); } // RDFAlt