/** * <copyright> * * Copyright (c) 2005-2006 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 - Initial API and implementation * * </copyright> * * $Id: ItemImpl.java,v 1.3 2006/12/29 18:27:44 marcelop Exp $ */ package org.eclipse.emf.examples.extlibrary.impl; import java.util.Date; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.examples.extlibrary.EXTLibraryPackage; import org.eclipse.emf.examples.extlibrary.Item; import org.eclipse.emf.internal.cdo.CDOObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Item</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.emf.examples.extlibrary.impl.ItemImpl#getPublicationDate <em>Publication Date</em>}</li> * </ul> * </p> * * @generated */ public abstract class ItemImpl extends CDOObjectImpl implements Item { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ItemImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return EXTLibraryPackage.Literals.ITEM; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Date getPublicationDate() { return (Date)eGet(EXTLibraryPackage.Literals.ITEM__PUBLICATION_DATE, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setPublicationDate(Date newPublicationDate) { eSet(EXTLibraryPackage.Literals.ITEM__PUBLICATION_DATE, newPublicationDate); } } //ItemImpl