Skip to content

Package: VTStyleSelectorContainer

VTStyleSelectorContainer

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.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Style Selector Container</b></em>'.
21: *
22: * @since 1.17
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * </p>
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.view.template.model.VTStyleSelectorContainer#getSelector
30: * <em>Selector</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.template.model.VTTemplatePackage#getStyleSelectorContainer()
34: * @model abstract="true"
35: * @generated
36: */
37: public interface VTStyleSelectorContainer extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Selector</b></em>' containment reference.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Selector</em>' containment reference isn't clear,
43:          * there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Selector</em>' containment reference.
48:          * @see #setSelector(VTStyleSelector)
49:          * @see org.eclipse.emf.ecp.view.template.model.VTTemplatePackage#getStyleSelectorContainer_Selector()
50:          * @model containment="true" required="true"
51:          * @generated
52:          */
53:         VTStyleSelector getSelector();
54:
55:         /**
56:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.template.model.VTStyleSelectorContainer#getSelector
57:          * <em>Selector</em>}' containment reference.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @param value the new value of the '<em>Selector</em>' containment reference.
62:          * @see #getSelector()
63:          * @generated
64:          */
65:         void setSelector(VTStyleSelector value);
66:
67: } // VTStyleSelectorContainer