Skip to content

Package: VTMultiStyleSelectorContainer

VTMultiStyleSelectorContainer

Coverage

1: /**
2: * Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.model;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecore.EObject;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Multi Style Selector Container</b></em>'.
22: *
23: * @since 1.17
24: * <!-- end-user-doc -->
25: *
26: * <p>
27: * The following features are supported:
28: * </p>
29: * <ul>
30: * <li>{@link org.eclipse.emf.ecp.view.template.model.VTMultiStyleSelectorContainer#getSelectors
31: * <em>Selectors</em>}</li>
32: * </ul>
33: *
34: * @see org.eclipse.emf.ecp.view.template.model.VTTemplatePackage#getMultiStyleSelectorContainer()
35: * @model abstract="true"
36: * @generated
37: */
38: public interface VTMultiStyleSelectorContainer extends EObject {
39:         /**
40:          * Returns the value of the '<em><b>Selectors</b></em>' containment reference list.
41:          * The list contents are of type {@link org.eclipse.emf.ecp.view.template.model.VTStyleSelector}.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Selectors</em>' containment reference list isn't clear,
45:          * there really should be more of a description here...
46:          * </p>
47:          * <!-- end-user-doc -->
48:          *
49:          * @return the value of the '<em>Selectors</em>' containment reference list.
50:          * @see org.eclipse.emf.ecp.view.template.model.VTTemplatePackage#getMultiStyleSelectorContainer_Selectors()
51:          * @model containment="true" lower="2"
52:          * @generated
53:          */
54:         EList<VTStyleSelector> getSelectors();
55:
56: } // VTMultiStyleSelectorContainer