1 /**2 * <copyright>3 *4 * Copyright (c) 2003-2004 IBM Corporation and others.5 * All rights reserved. This program and the accompanying materials6 * are made available under the terms of the Eclipse Public License v1.07 * which accompanies this distribution, and is available at8 * http://www.eclipse.org/legal/epl-v10.html9 *10 * Contributors:11 * IBM - Initial API and implementation12 *13 * </copyright>14 *15 * $Id: EDataObject.java,v 1.6 2005/06/22 20:00:36 davidms Exp $16 */17 package org.eclipse.emf.ecore.sdo;18 19 import org.eclipse.emf.ecore.EObject;20 21 import commonj.sdo.DataObject;22 23 import java.util.List ;24 25 /**26 * <!-- begin-user-doc -->27 * A representation of the model object '<em><b>EData Object</b></em>'.28 * <!-- end-user-doc -->29 *30 *31 * @see org.eclipse.emf.ecore.sdo.SDOPackage#getEDataObject()32 * @model33 * @generated34 */35 public interface EDataObject extends EObject, DataObject36 {37 /**38 * <!-- begin-user-doc -->39 * <!-- end-user-doc -->40 * @model kind="operation" dataType="org.eclipse.emf.ecore.sdo.EJavaList" many="false"41 * annotation="http://www.eclipse.org/emf/2002/GenModel body='return <%org.eclipse.emf.ecore.sdo.util.SDOUtil%>.getInstanceProperties(this);'"42 * @generated43 */44 List getInstanceProperties();45 46 } // EDataObject47