KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > ecore > xml > type > AnyType


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: AnyType.java,v 1.3 2005/06/08 06:20:10 nickb Exp $
16  */

17 package org.eclipse.emf.ecore.xml.type;
18
19
20 import org.eclipse.emf.ecore.EObject;
21 import org.eclipse.emf.ecore.util.FeatureMap;
22
23
24 /**
25  * <!-- begin-user-doc -->
26  * A representation of the model object '<em><b>Any Type</b></em>'.
27  * <!-- end-user-doc -->
28  *
29  * <p>
30  * The following features are supported:
31  * <ul>
32  * <li>{@link org.eclipse.emf.ecore.xml.type.AnyType#getMixed <em>Mixed</em>}</li>
33  * <li>{@link org.eclipse.emf.ecore.xml.type.AnyType#getAny <em>Any</em>}</li>
34  * <li>{@link org.eclipse.emf.ecore.xml.type.AnyType#getAnyAttribute <em>Any Attribute</em>}</li>
35  * </ul>
36  * </p>
37  *
38  * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getAnyType()
39  * @model extendedMetaData="name='anyType' kind='mixed'"
40  * @generated
41  */

42 public interface AnyType extends EObject
43 {
44   /**
45    * Returns the value of the '<em><b>Mixed</b></em>' attribute list.
46    * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
47    * <!-- begin-user-doc -->
48    * <p>
49    * If the meaning of the '<em>Mixed</em>' attribute list isn't clear,
50    * there really should be more of a description here...
51    * </p>
52    * <!-- end-user-doc -->
53    * @return the value of the '<em>Mixed</em>' attribute list.
54    * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getAnyType_Mixed()
55    * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
56    * extendedMetaData="kind='elementWildcard' name=':mixed'"
57    * @generated
58    */

59   FeatureMap getMixed();
60
61   /**
62    * Returns the value of the '<em><b>Any</b></em>' attribute list.
63    * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
64    * <!-- begin-user-doc -->
65    * <p>
66    * If the meaning of the '<em>Any</em>' attribute list isn't clear,
67    * there really should be more of a description here...
68    * </p>
69    * <!-- end-user-doc -->
70    * @return the value of the '<em>Any</em>' attribute list.
71    * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getAnyType_Any()
72    * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" transient="true" volatile="true" derived="true"
73    * extendedMetaData="kind='elementWildcard' wildcards='##any' name=':1' processing='lax'"
74    * @generated
75    */

76   FeatureMap getAny();
77
78   /**
79    * Returns the value of the '<em><b>Any Attribute</b></em>' attribute list.
80    * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
81    * <!-- begin-user-doc -->
82    * <p>
83    * If the meaning of the '<em>Any Attribute</em>' attribute list isn't clear,
84    * there really should be more of a description here...
85    * </p>
86    * <!-- end-user-doc -->
87    * @return the value of the '<em>Any Attribute</em>' attribute list.
88    * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getAnyType_AnyAttribute()
89    * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
90    * extendedMetaData="kind='attributeWildcard' wildcards='##any' name=':2' processing='lax'"
91    * @generated
92    */

93   FeatureMap getAnyAttribute();
94
95 } // AnyType
96
Popular Tags