Skip to content

Package: VSection

VSection

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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.spi.section.model;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecp.view.spi.model.VContainer;
18: import org.eclipse.emf.ecp.view.spi.model.VHasTooltip;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * A representation of the model object '<em><b>Section</b></em>'.
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.spi.section.model.VSection#getChildItems <em>Child Items</em>}</li>
30: * <li>{@link org.eclipse.emf.ecp.view.spi.section.model.VSection#isCollapsed <em>Collapsed</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.spi.section.model.VSectionPackage#getSection()
34: * @model
35: * @generated
36: */
37: public interface VSection extends VContainer, VHasTooltip {
38:         /**
39:          * Returns the value of the '<em><b>Child Items</b></em>' containment reference list.
40:          * The list contents are of type {@link org.eclipse.emf.ecp.view.spi.section.model.VSection}.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Child Items</em>' containment reference list isn't clear, there really should be more
44:          * of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Child Items</em>' containment reference list.
49:          * @see org.eclipse.emf.ecp.view.spi.section.model.VSectionPackage#getSection_ChildItems()
50:          * @model containment="true"
51:          * @generated
52:          */
53:         EList<VSection> getChildItems();
54:
55:         /**
56:          * Returns the value of the '<em><b>Collapsed</b></em>' attribute.
57:          * The default value is <code>"false"</code>.
58:          * <!-- begin-user-doc -->
59:          * <p>
60:          * If the meaning of the '<em>Collapsed</em>' attribute isn't clear, there really should be more of a description
61:          * here...
62:          * </p>
63:          * <!-- end-user-doc -->
64:          *
65:          * @return the value of the '<em>Collapsed</em>' attribute.
66:          * @see #setCollapsed(boolean)
67:          * @see org.eclipse.emf.ecp.view.spi.section.model.VSectionPackage#getSection_Collapsed()
68:          * @model default="false"
69:          * @generated
70:          */
71:         boolean isCollapsed();
72:
73:         /**
74:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.section.model.VSection#isCollapsed
75:          * <em>Collapsed</em>}' attribute.
76:          * <!-- begin-user-doc -->
77:          * <!-- end-user-doc -->
78:          *
79:          * @param value the new value of the '<em>Collapsed</em>' attribute.
80:          * @see #isCollapsed()
81:          * @generated
82:          */
83:         void setCollapsed(boolean value);
84:
85: } // VSection