/******************************************************************************* * Copyright (c) 2008 Hallvard Traetteberg. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Hallvard Traetteberg - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id: Layout.java,v 1.5 2009/10/23 12:40:32 htraetteb Exp $ */ package org.eclipse.e4.tm.layouts; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Layout</b></em>'. * <!-- end-user-doc --> * * * @see org.eclipse.e4.tm.layouts.LayoutsPackage#getLayout() * @model annotation="http://www.eclipse.org/e4/swt.ecore access='field'" * annotation="http://www.eclipse.org/emf/2002/Ecore constraints='validLayoutData'" * @generated */ public interface Layout<T extends LayoutData> extends EObject { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ T createLayoutData(); } // Layout