1 /**
2  * Copyright (c) 2008, 2015 IBM Corporation and others.
3  *
4  * 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  *      IBM Corporation - initial API and implementation
13  */
14 package org.eclipse.e4.ui.model.application.ui.basic;
15 
16 import org.eclipse.e4.ui.model.application.ui.MUIElement;
17 
18 /**
19  * <!-- begin-user-doc -->
20  * A representation of the model object '<em><b>Window Element</b></em>'.
21  * <!-- end-user-doc -->
22  *
23  * <!-- begin-model-doc -->
24  * <p>
25  * A class to be mixed in to any element that should be allowed to be added to a
26  * Window.
27  * </p>
28  * @since 1.0
29  * @noimplement This interface is not intended to be implemented by clients.
30  * <!-- end-model-doc -->
31  *
32  *
33  * @model interface="true" abstract="true"
34  * @generated
35  */
36 public interface MWindowElement extends MUIElement {
37 } // MWindowElement
38