/** * Copyright (c) 2008, 2015 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation */ package org.eclipse.e4.ui.model.application.ui.impl; import org.eclipse.e4.ui.model.application.ui.MGenericTile; import org.eclipse.e4.ui.model.application.ui.MUIElement; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Generic Tile</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.e4.ui.model.application.ui.impl.GenericTileImpl#isHorizontal <em>Horizontal</em>}</li> * </ul> * * @generated */ public abstract class GenericTileImpl<T extends MUIElement> extends ElementContainerImpl<T> implements MGenericTile<T> { /** * The default value of the '{@link #isHorizontal() <em>Horizontal</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isHorizontal() * @generated * @ordered */ protected static final boolean HORIZONTAL_EDEFAULT = false; /** * The cached value of the '{@link #isHorizontal() <em>Horizontal</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isHorizontal() * @generated * @ordered */ protected boolean horizontal = HORIZONTAL_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected GenericTileImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return UiPackageImpl.Literals.GENERIC_TILE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isHorizontal() { return horizontal; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setHorizontal(boolean newHorizontal) { boolean oldHorizontal = horizontal; horizontal = newHorizontal; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, UiPackageImpl.GENERIC_TILE__HORIZONTAL, oldHorizontal, horizontal)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case UiPackageImpl.GENERIC_TILE__HORIZONTAL: return isHorizontal(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case UiPackageImpl.GENERIC_TILE__HORIZONTAL: setHorizontal((Boolean)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case UiPackageImpl.GENERIC_TILE__HORIZONTAL: setHorizontal(HORIZONTAL_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case UiPackageImpl.GENERIC_TILE__HORIZONTAL: return horizontal != HORIZONTAL_EDEFAULT; } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (horizontal: "); //$NON-NLS-1$ result.append(horizontal); result.append(')'); return result.toString(); } } //GenericTileImpl