Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4972d30f29d1130675454adb995e999e2a1af4aa (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
/**
 *                                                                            
 *  Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany) 
 *                                                                            
 *  All rights reserved. This program and the accompanying materials           
 *  are made available under the terms of the Eclipse Public License 2.0        
 *  which accompanies this distribution, and is available at                  
 *  https://www.eclipse.org/legal/epl-2.0/                                 
 *                                 
 *  SPDX-License-Identifier: EPL-2.0                                 
 *                                                                            
 *  Contributors:                                                      
 * 	   Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
 * 
 */
 package org.eclipse.osbp.ecview.core.common.model.core;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc --> A helper layout is a layout which contains
 * YEmbeddables without containing them. For some reasons an embeddable may be
 * contained by a different model object, which is not a layout. But for
 * focusing issues we need to determine the next focusable element by YLayout.
 * <p>
 * For instance the CxGrid contains YColumns and each column contains an editor
 * field. So the eContainer of editorfield is YColumn. But the focusing strategy
 * needs to use an YLayout to find the next focusable element. Grid will use
 * this layout to collect all editorfields inside this layout.
 * <p>
 * Calls to <code>getElements()</code> are forwarded to
 * <code>getVirtualElements()</code>. <!-- end-user-doc -->
 *
 *
 * @see org.eclipse.osbp.ecview.core.common.model.core.CoreModelPackage#getYHelperLayoutProvider()
 * @model interface="true" abstract="true"
 * @generated
 */
public interface YHelperLayoutProvider extends EObject {
	
	/**
	 * <!-- begin-user-doc -->
	 * <p>
	 * A virtual element is an element that is <b>NOT</b> contained by its
	 * parent. For instance see CxGrid#column#editorfield. See
	 * {@link YHelperLayout}. <!-- end-user-doc -->
	 * @model kind="operation"
	 * @generated
	 */
	YHelperLayout getHelperLayout();

} // YHelperLayoutProvider

Back to the top