KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > ecore > sdo > EDataObject


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2003-2004 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
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 JavaDoc;
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  * @model
33  * @generated
34  */

35 public interface EDataObject extends EObject, DataObject
36 {
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    * @generated
43    */

44   List JavaDoc getInstanceProperties();
45
46 } // EDataObject
47
Popular Tags