KickJava   Java API By Example, From Geeks To Geeks.

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


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: SimpleAnyType.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.EDataType;
21
22
23 /**
24  * <!-- begin-user-doc -->
25  * A representation of the model object '<em><b>Simple Any Type</b></em>'.
26  * <!-- end-user-doc -->
27  *
28  * <p>
29  * The following features are supported:
30  * <ul>
31  * <li>{@link org.eclipse.emf.ecore.xml.type.SimpleAnyType#getRawValue <em>Raw Value</em>}</li>
32  * <li>{@link org.eclipse.emf.ecore.xml.type.SimpleAnyType#getValue <em>Value</em>}</li>
33  * <li>{@link org.eclipse.emf.ecore.xml.type.SimpleAnyType#getInstanceType <em>Instance Type</em>}</li>
34  * </ul>
35  * </p>
36  *
37  * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getSimpleAnyType()
38  * @model extendedMetaData="name='simpleAnyType' kind='simple'"
39  * @generated
40  */

41 public interface SimpleAnyType extends AnyType
42 {
43   /**
44    * Returns the value of the '<em><b>Raw Value</b></em>' attribute.
45    * <!-- begin-user-doc -->
46    * <p>
47    * If the meaning of the '<em>Raw Value</em>' attribute isn't clear,
48    * there really should be more of a description here...
49    * </p>
50    * <!-- end-user-doc -->
51    * @return the value of the '<em>Raw Value</em>' attribute.
52    * @see #setRawValue(String)
53    * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getSimpleAnyType_RawValue()
54    * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" transient="true" volatile="true" derived="true"
55    * extendedMetaData="name=':3' kind='simple'"
56    * @generated
57    */

58   String JavaDoc getRawValue();
59
60   /**
61    * Sets the value of the '{@link org.eclipse.emf.ecore.xml.type.SimpleAnyType#getRawValue <em>Raw Value</em>}' attribute.
62    * <!-- begin-user-doc -->
63    * <!-- end-user-doc -->
64    * @param value the new value of the '<em>Raw Value</em>' attribute.
65    * @see #getRawValue()
66    * @generated
67    */

68   void setRawValue(String JavaDoc value);
69
70   /**
71    * Returns the value of the '<em><b>Value</b></em>' attribute.
72    * <!-- begin-user-doc -->
73    * <p>
74    * If the meaning of the '<em>Value</em>' attribute isn't clear,
75    * there really should be more of a description here...
76    * </p>
77    * <!-- end-user-doc -->
78    * @return the value of the '<em>Value</em>' attribute.
79    * @see #setValue(Object)
80    * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getSimpleAnyType_Value()
81    * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.AnySimpleType" transient="true" volatile="true" derived="true"
82    * extendedMetaData="name=':4' kind='simple'"
83    * @generated
84    */

85   Object JavaDoc getValue();
86
87   /**
88    * Sets the value of the '{@link org.eclipse.emf.ecore.xml.type.SimpleAnyType#getValue <em>Value</em>}' attribute.
89    * <!-- begin-user-doc -->
90    * <!-- end-user-doc -->
91    * @param value the new value of the '<em>Value</em>' attribute.
92    * @see #getValue()
93    * @generated
94    */

95   void setValue(Object JavaDoc value);
96
97   /**
98    * Returns the value of the '<em><b>Instance Type</b></em>' reference.
99    * <!-- begin-user-doc -->
100    * <p>
101    * If the meaning of the '<em>Instance Type</em>' reference isn't clear,
102    * there really should be more of a description here...
103    * </p>
104    * <!-- end-user-doc -->
105    * @return the value of the '<em>Instance Type</em>' reference.
106    * @see #setInstanceType(EDataType)
107    * @see org.eclipse.emf.ecore.xml.type.XMLTypePackage#getSimpleAnyType_InstanceType()
108    * @model resolveProxies="false" required="true"
109    * extendedMetaData="name=':5' kind='simple'"
110    * @generated
111    */

112   EDataType getInstanceType();
113
114   /**
115    * Sets the value of the '{@link org.eclipse.emf.ecore.xml.type.SimpleAnyType#getInstanceType <em>Instance Type</em>}' reference.
116    * <!-- begin-user-doc -->
117    * <!-- end-user-doc -->
118    * @param value the new value of the '<em>Instance Type</em>' reference.
119    * @see #getInstanceType()
120    * @generated
121    */

122   void setInstanceType(EDataType value);
123
124 } // SimpleAnyType
125
Popular Tags