Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e25f4f5a693d6e5f05d9bbe1e6236b5860cd8b42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
 * Copyright (c) 2015, 2018 Obeo.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors: Obeo - initial API and implementation
 */
package org.eclipse.eef;

/**
 * <!-- begin-user-doc --> A representation of the model object '<em><b>EEF Fill Layout Description</b></em>'. <!--
 * end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 * <li>{@link org.eclipse.eef.EEFFillLayoutDescription#getOrientation <em>Orientation</em>}</li>
 * </ul>
 *
 * @see org.eclipse.eef.EefPackage#getEEFFillLayoutDescription()
 * @model
 * @generated
 */
public interface EEFFillLayoutDescription extends EEFLayoutDescription {
	/**
	 * Returns the value of the '<em><b>Orientation</b></em>' attribute. The default value is <code>"VERTICAL"</code>.
	 * The literals are from the enumeration {@link org.eclipse.eef.EEF_FILL_LAYOUT_ORIENTATION}. <!-- begin-user-doc
	 * --> <!-- end-user-doc --> <!-- begin-model-doc --> The orientation of the fill layout. <!-- end-model-doc -->
	 * 
	 * @return the value of the '<em>Orientation</em>' attribute.
	 * @see org.eclipse.eef.EEF_FILL_LAYOUT_ORIENTATION
	 * @see #setOrientation(EEF_FILL_LAYOUT_ORIENTATION)
	 * @see org.eclipse.eef.EefPackage#getEEFFillLayoutDescription_Orientation()
	 * @model default="VERTICAL"
	 * @generated
	 */
	EEF_FILL_LAYOUT_ORIENTATION getOrientation();

	/**
	 * Sets the value of the '{@link org.eclipse.eef.EEFFillLayoutDescription#getOrientation <em>Orientation</em>}'
	 * attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
	 * 
	 * @param value
	 *            the new value of the '<em>Orientation</em>' attribute.
	 * @see org.eclipse.eef.EEF_FILL_LAYOUT_ORIENTATION
	 * @see #getOrientation()
	 * @generated
	 */
	void setOrientation(EEF_FILL_LAYOUT_ORIENTATION value);

} // EEFFillLayoutDescription

Back to the top