/******************************************************************************* * 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: LayoutImpl.java,v 1.4 2009/10/23 12:40:32 htraetteb Exp $ */ package org.eclipse.e4.tm.layouts.impl; import org.eclipse.e4.tm.layouts.Layout; import org.eclipse.e4.tm.layouts.LayoutData; import org.eclipse.e4.tm.layouts.LayoutsPackage; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.EObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Layout</b></em>'. * <!-- end-user-doc --> * <p> * </p> * * @generated */ public class LayoutImpl<T extends LayoutData> extends EObjectImpl implements Layout<T> { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected LayoutImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return LayoutsPackage.Literals.LAYOUT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public T createLayoutData() { // TODO: implement this method // Ensure that you remove @generated or mark it @generated NOT throw new UnsupportedOperationException(); } } //LayoutImpl