Skip to content

Package: VTStyle

VTStyle

Coverage

1: /**
2: * Copyright (c) 2011-2013 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:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Style</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.view.template.model.VTStyle#getProperties <em>Properties</em>}</li>
28: * </ul>
29: *
30: * @see org.eclipse.emf.ecp.view.template.model.VTTemplatePackage#getStyle()
31: * @model
32: * @generated
33: */
34: public interface VTStyle extends VTStyleSelectorContainer {
35:         /**
36:          * Returns the value of the '<em><b>Properties</b></em>' containment reference list.
37:          * The list contents are of type {@link org.eclipse.emf.ecp.view.template.model.VTStyleProperty}.
38:          * <!-- begin-user-doc -->
39:          * <p>
40:          * If the meaning of the '<em>Properties</em>' containment reference list isn't clear, there really should be more
41:          * of a description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>Properties</em>' containment reference list.
46:          * @see org.eclipse.emf.ecp.view.template.model.VTTemplatePackage#getStyle_Properties()
47:          * @model containment="true"
48:          * @generated
49:          */
50:         EList<VTStyleProperty> getProperties();
51:
52: } // VTStyle