Changeset 79dd6994d81bd77cd232a3d55e8531b73adf71aa
- Timestamp:
- 06/28/09 23:36:49 (15 months ago)
- Author:
- mb0 <mb0@…>
- Children:
- 87f02d16be3ad1849f47a8a1e5c588a5924d4677
- Parents:
- a106cc373e028ca3bb89023c7e8ee459713ff2c3
- git-author:
- mb0 <mb0@…> (05/28/09 22:41:09)
- git-committer:
- mb0 <mb0@…> (06/28/09 23:36:49)
- Message:
-
renamed org.axdt.axdoc to org.axdt.axdoc.model
AXDocPlugin to AXDocModelPlugin
moved IFlexErrorCodes from org.axdt.flexsdk.common to org.axdt.common
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 | <projectDescription> |
| 3 | | <name>org.axdt.axdoc</name> |
| | 3 | <name>org.axdt.axdoc.model</name> |
| 4 | 4 | <comment></comment> |
| 5 | 5 | <projects> |
-
|
r9a9ef10
|
r79dd699
|
|
| 2 | 2 | Bundle-ManifestVersion: 2 |
| 3 | 3 | Bundle-Name: %pluginName |
| 4 | | Bundle-SymbolicName: org.axdt.axdoc;singleton:=true |
| | 4 | Bundle-SymbolicName: org.axdt.axdoc.model;singleton:=true |
| 5 | 5 | Bundle-Version: 0.0.6.0 |
| 6 | 6 | Bundle-ClassPath: ., |
| … |
… |
|
| 15 | 15 | Export-Package: org.axdt.axdoc, |
| 16 | 16 | org.axdt.axdoc.model, |
| 17 | | org.axdt.axdoc.util |
| | 17 | org.axdt.axdoc.model.util |
-
|
r9a9ef10
|
r79dd699
|
|
| 3 | 3 | xmlns:xmi="http://www.omg.org/XMI" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" |
| 4 | 4 | xmlns:genmodel="http://www.eclipse.org/emf/2002/GenModel" copyrightText="EPL - axdt.org
created by martin schnabel - mb0" |
| 5 | | modelDirectory="/org.axdt.axdoc/src" creationSubmenus="true" modelPluginID="org.axdt.axdoc" |
| 6 | | modelName="AXDoc" modelPluginClass="org.axdt.axdoc.AXDocPlugin" generateSchema="true" |
| | 5 | modelDirectory="/org.axdt.axdoc.model/src" creationSubmenus="true" modelPluginID="org.axdt.axdoc" |
| | 6 | modelName="AXDoc" modelPluginClass="org.axdt.axdoc.model.AXDocModelPlugin" generateSchema="true" |
| 7 | 7 | codeFormatting="true" testsDirectory="/org.axdt.axdoc.test/src" testSuiteClass="org.axdt.axdoc.AXDocAllTest" |
| 8 | 8 | booleanFlagsField="flags" importerID="org.eclipse.emf.importer.ecore" minimalReflectiveMethods="false" |
| … |
… |
|
| 11 | 11 | <foreignModel>AXDoc.ecore</foreignModel> |
| 12 | 12 | <genPackages prefix="AXDoc" basePackage="org.axdt" resource="XML" disposableProviderFactory="true" |
| 13 | | interfacePackageSuffix="model" testsPackageSuffix="model" generateExampleClass="false" |
| 14 | | contentTypeIdentifier="" ecorePackage="AXDoc.ecore#/"> |
| | 13 | interfacePackageSuffix="model" metaDataPackageSuffix="model" classPackageSuffix="model.impl" |
| | 14 | utilityPackageSuffix="model.util" providerPackageSuffix="model.provider" presentationPackageSuffix="model.presentation" |
| | 15 | testsPackageSuffix="model" generateExampleClass="false" contentTypeIdentifier="" |
| | 16 | ecorePackage="AXDoc.ecore#/"> |
| 15 | 17 | <genEnums typeSafeEnumCompatible="false" ecoreEnum="AXDoc.ecore#//AXLevel"> |
| 16 | 18 | <genEnumLiterals ecoreEnumLiteral="AXDoc.ecore#//AXLevel/EMPTY"/> |
| … |
… |
|
| 68 | 70 | <genFeatures createChild="false" ecoreFeature="ecore:EAttribute AXDoc.ecore#//AXRoot/url"/> |
| 69 | 71 | <genFeatures createChild="false" ecoreFeature="ecore:EAttribute AXDoc.ecore#//AXRoot/rootType"/> |
| | 72 | <genFeatures createChild="false" ecoreFeature="ecore:EAttribute AXDoc.ecore#//AXRoot/rootLevel"/> |
| 70 | 73 | <genOperations ecoreOperation="AXDoc.ecore#//AXRoot/createPackageIndex"> |
| 71 | 74 | <genParameters ecoreParameter="AXDoc.ecore#//AXRoot/createPackageIndex/id"/> |
-
|
r9a9ef10
|
r79dd699
|
|
| 14 | 14 | <package |
| 15 | 15 | uri="http://axdt.org/axdoc" |
| 16 | | class="org.axdt.axdoc.AXDocPackage" |
| | 16 | class="org.axdt.axdoc.model.AXDocPackage" |
| 17 | 17 | genModel="model/AXDoc.genmodel"/> |
| 18 | 18 | </extension> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc; |
| | 7 | package org.axdt.axdoc.model; |
| 8 | 8 | |
| 9 | | import org.axdt.axdoc.model.AXEntry; |
| 10 | | import org.axdt.axdoc.model.AXIndex; |
| 11 | | import org.axdt.axdoc.model.AXMember; |
| 12 | | import org.axdt.axdoc.model.AXPackage; |
| 13 | | import org.axdt.axdoc.model.AXRoot; |
| 14 | | import org.axdt.axdoc.model.AXType; |
| 15 | 9 | import org.eclipse.emf.ecore.EFactory; |
| 16 | 10 | |
| … |
… |
|
| 20 | 14 | * It provides a create method for each non-abstract class of the model. |
| 21 | 15 | * <!-- end-user-doc --> |
| 22 | | * @see org.axdt.axdoc.AXDocPackage |
| | 16 | * @see org.axdt.axdoc.model.AXDocPackage |
| 23 | 17 | * @generated |
| 24 | 18 | */ |
| … |
… |
|
| 30 | 24 | * @generated |
| 31 | 25 | */ |
| 32 | | AXDocFactory eINSTANCE = org.axdt.axdoc.impl.AXDocFactoryImpl.init(); |
| | 26 | AXDocFactory eINSTANCE = org.axdt.axdoc.model.impl.AXDocFactoryImpl.init(); |
| 33 | 27 | |
| 34 | 28 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc; |
| | 1 | package org.axdt.axdoc.model; |
| 2 | 2 | |
| 3 | 3 | import org.eclipse.emf.common.EMFPlugin; |
| … |
… |
|
| 8 | 8 | * @generated |
| 9 | 9 | */ |
| 10 | | public final class AXDocPlugin extends EMFPlugin { |
| | 10 | public final class AXDocModelPlugin extends EMFPlugin { |
| 11 | 11 | |
| 12 | 12 | /** |
| … |
… |
|
| 16 | 16 | * @generated |
| 17 | 17 | */ |
| 18 | | public static final AXDocPlugin INSTANCE = new AXDocPlugin(); |
| | 18 | public static final AXDocModelPlugin INSTANCE = new AXDocModelPlugin(); |
| 19 | 19 | /** |
| 20 | 20 | * Keep track of the singleton. |
| … |
… |
|
| 28 | 28 | * @generated |
| 29 | 29 | */ |
| 30 | | public AXDocPlugin() { |
| | 30 | public AXDocModelPlugin() { |
| 31 | 31 | super(new ResourceLocator[] {}); |
| 32 | 32 | } |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc; |
| | 7 | package org.axdt.axdoc.model; |
| 8 | 8 | |
| 9 | 9 | import org.eclipse.emf.ecore.EAttribute; |
| … |
… |
|
| 24 | 24 | * </ul> |
| 25 | 25 | * <!-- end-user-doc --> |
| 26 | | * @see org.axdt.axdoc.AXDocFactory |
| | 26 | * @see org.axdt.axdoc.model.AXDocFactory |
| 27 | 27 | * @model kind="package" |
| 28 | 28 | * @generated |
| … |
… |
|
| 59 | 59 | * @generated |
| 60 | 60 | */ |
| 61 | | AXDocPackage eINSTANCE = org.axdt.axdoc.impl.AXDocPackageImpl.init(); |
| 62 | | |
| 63 | | /** |
| 64 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXNodeImpl <em>AX Node</em>}' class. |
| 65 | | * <!-- begin-user-doc --> |
| 66 | | * <!-- end-user-doc --> |
| 67 | | * @see org.axdt.axdoc.impl.AXNodeImpl |
| 68 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXNode() |
| | 61 | AXDocPackage eINSTANCE = org.axdt.axdoc.model.impl.AXDocPackageImpl.init(); |
| | 62 | |
| | 63 | /** |
| | 64 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXNodeImpl <em>AX Node</em>}' class. |
| | 65 | * <!-- begin-user-doc --> |
| | 66 | * <!-- end-user-doc --> |
| | 67 | * @see org.axdt.axdoc.model.impl.AXNodeImpl |
| | 68 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXNode() |
| 69 | 69 | * @generated |
| 70 | 70 | */ |
| … |
… |
|
| 103 | 103 | * <!-- end-user-doc --> |
| 104 | 104 | * @see org.axdt.axdoc.model.AXMemberHolder |
| 105 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXMemberHolder() |
| | 105 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXMemberHolder() |
| 106 | 106 | * @generated |
| 107 | 107 | */ |
| … |
… |
|
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXPackageImpl <em>AX Package</em>}' class. |
| 148 | | * <!-- begin-user-doc --> |
| 149 | | * <!-- end-user-doc --> |
| 150 | | * @see org.axdt.axdoc.impl.AXPackageImpl |
| 151 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXPackage() |
| | 147 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXPackageImpl <em>AX Package</em>}' class. |
| | 148 | * <!-- begin-user-doc --> |
| | 149 | * <!-- end-user-doc --> |
| | 150 | * @see org.axdt.axdoc.model.impl.AXPackageImpl |
| | 151 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXPackage() |
| 152 | 152 | * @generated |
| 153 | 153 | */ |
| … |
… |
|
| 200 | 200 | |
| 201 | 201 | /** |
| 202 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXTypeImpl <em>AX Type</em>}' class. |
| 203 | | * <!-- begin-user-doc --> |
| 204 | | * <!-- end-user-doc --> |
| 205 | | * @see org.axdt.axdoc.impl.AXTypeImpl |
| 206 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXType() |
| | 202 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXTypeImpl <em>AX Type</em>}' class. |
| | 203 | * <!-- begin-user-doc --> |
| | 204 | * <!-- end-user-doc --> |
| | 205 | * @see org.axdt.axdoc.model.impl.AXTypeImpl |
| | 206 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXType() |
| 207 | 207 | * @generated |
| 208 | 208 | */ |
| … |
… |
|
| 255 | 255 | |
| 256 | 256 | /** |
| 257 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXMemberImpl <em>AX Member</em>}' class. |
| 258 | | * <!-- begin-user-doc --> |
| 259 | | * <!-- end-user-doc --> |
| 260 | | * @see org.axdt.axdoc.impl.AXMemberImpl |
| 261 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXMember() |
| | 257 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXMemberImpl <em>AX Member</em>}' class. |
| | 258 | * <!-- begin-user-doc --> |
| | 259 | * <!-- end-user-doc --> |
| | 260 | * @see org.axdt.axdoc.model.impl.AXMemberImpl |
| | 261 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXMember() |
| 262 | 262 | * @generated |
| 263 | 263 | */ |
| … |
… |
|
| 337 | 337 | |
| 338 | 338 | /** |
| 339 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXIndexNodeImpl <em>AX Index Node</em>}' class. |
| 340 | | * <!-- begin-user-doc --> |
| 341 | | * <!-- end-user-doc --> |
| 342 | | * @see org.axdt.axdoc.impl.AXIndexNodeImpl |
| 343 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXIndexNode() |
| | 339 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXIndexNodeImpl <em>AX Index Node</em>}' class. |
| | 340 | * <!-- begin-user-doc --> |
| | 341 | * <!-- end-user-doc --> |
| | 342 | * @see org.axdt.axdoc.model.impl.AXIndexNodeImpl |
| | 343 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXIndexNode() |
| 344 | 344 | * @generated |
| 345 | 345 | */ |
| … |
… |
|
| 392 | 392 | |
| 393 | 393 | /** |
| 394 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXIndexImpl <em>AX Index</em>}' class. |
| 395 | | * <!-- begin-user-doc --> |
| 396 | | * <!-- end-user-doc --> |
| 397 | | * @see org.axdt.axdoc.impl.AXIndexImpl |
| 398 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXIndex() |
| | 394 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXIndexImpl <em>AX Index</em>}' class. |
| | 395 | * <!-- begin-user-doc --> |
| | 396 | * <!-- end-user-doc --> |
| | 397 | * @see org.axdt.axdoc.model.impl.AXIndexImpl |
| | 398 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXIndex() |
| 399 | 399 | * @generated |
| 400 | 400 | */ |
| … |
… |
|
| 483 | 483 | |
| 484 | 484 | /** |
| 485 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXRootImpl <em>AX Root</em>}' class. |
| 486 | | * <!-- begin-user-doc --> |
| 487 | | * <!-- end-user-doc --> |
| 488 | | * @see org.axdt.axdoc.impl.AXRootImpl |
| 489 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXRoot() |
| | 485 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXRootImpl <em>AX Root</em>}' class. |
| | 486 | * <!-- begin-user-doc --> |
| | 487 | * <!-- end-user-doc --> |
| | 488 | * @see org.axdt.axdoc.model.impl.AXRootImpl |
| | 489 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXRoot() |
| 490 | 490 | * @generated |
| 491 | 491 | */ |
| … |
… |
|
| 601 | 601 | |
| 602 | 602 | /** |
| 603 | | * The meta object id for the '{@link org.axdt.axdoc.impl.AXEntryImpl <em>AX Entry</em>}' class. |
| 604 | | * <!-- begin-user-doc --> |
| 605 | | * <!-- end-user-doc --> |
| 606 | | * @see org.axdt.axdoc.impl.AXEntryImpl |
| 607 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXEntry() |
| | 603 | * The meta object id for the '{@link org.axdt.axdoc.model.impl.AXEntryImpl <em>AX Entry</em>}' class. |
| | 604 | * <!-- begin-user-doc --> |
| | 605 | * <!-- end-user-doc --> |
| | 606 | * @see org.axdt.axdoc.model.impl.AXEntryImpl |
| | 607 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXEntry() |
| 608 | 608 | * @generated |
| 609 | 609 | */ |
| … |
… |
|
| 678 | 678 | * <!-- end-user-doc --> |
| 679 | 679 | * @see org.axdt.axdoc.model.AXLevel |
| 680 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXLevel() |
| | 680 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXLevel() |
| 681 | 681 | * @generated |
| 682 | 682 | */ |
| … |
… |
|
| 688 | 688 | * <!-- end-user-doc --> |
| 689 | 689 | * @see org.axdt.axdoc.model.AXRootType |
| 690 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXRootType() |
| | 690 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXRootType() |
| 691 | 691 | * @generated |
| 692 | 692 | */ |
| … |
… |
|
| 698 | 698 | * <!-- end-user-doc --> |
| 699 | 699 | * @see org.axdt.axdoc.model.AXEntryType |
| 700 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXEntryType() |
| | 700 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXEntryType() |
| 701 | 701 | * @generated |
| 702 | 702 | */ |
| … |
… |
|
| 1099 | 1099 | interface Literals { |
| 1100 | 1100 | /** |
| 1101 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXNodeImpl <em>AX Node</em>}' class. |
| 1102 | | * <!-- begin-user-doc --> |
| 1103 | | * <!-- end-user-doc --> |
| 1104 | | * @see org.axdt.axdoc.impl.AXNodeImpl |
| 1105 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXNode() |
| | 1101 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXNodeImpl <em>AX Node</em>}' class. |
| | 1102 | * <!-- begin-user-doc --> |
| | 1103 | * <!-- end-user-doc --> |
| | 1104 | * @see org.axdt.axdoc.model.impl.AXNodeImpl |
| | 1105 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXNode() |
| 1106 | 1106 | * @generated |
| 1107 | 1107 | */ |
| … |
… |
|
| 1125 | 1125 | |
| 1126 | 1126 | /** |
| 1127 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXPackageImpl <em>AX Package</em>}' class. |
| 1128 | | * <!-- begin-user-doc --> |
| 1129 | | * <!-- end-user-doc --> |
| 1130 | | * @see org.axdt.axdoc.impl.AXPackageImpl |
| 1131 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXPackage() |
| | 1127 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXPackageImpl <em>AX Package</em>}' class. |
| | 1128 | * <!-- begin-user-doc --> |
| | 1129 | * <!-- end-user-doc --> |
| | 1130 | * @see org.axdt.axdoc.model.impl.AXPackageImpl |
| | 1131 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXPackage() |
| 1132 | 1132 | * @generated |
| 1133 | 1133 | */ |
| … |
… |
|
| 1143 | 1143 | |
| 1144 | 1144 | /** |
| 1145 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXTypeImpl <em>AX Type</em>}' class. |
| 1146 | | * <!-- begin-user-doc --> |
| 1147 | | * <!-- end-user-doc --> |
| 1148 | | * @see org.axdt.axdoc.impl.AXTypeImpl |
| 1149 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXType() |
| | 1145 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXTypeImpl <em>AX Type</em>}' class. |
| | 1146 | * <!-- begin-user-doc --> |
| | 1147 | * <!-- end-user-doc --> |
| | 1148 | * @see org.axdt.axdoc.model.impl.AXTypeImpl |
| | 1149 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXType() |
| 1150 | 1150 | * @generated |
| 1151 | 1151 | */ |
| … |
… |
|
| 1161 | 1161 | |
| 1162 | 1162 | /** |
| 1163 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXMemberImpl <em>AX Member</em>}' class. |
| 1164 | | * <!-- begin-user-doc --> |
| 1165 | | * <!-- end-user-doc --> |
| 1166 | | * @see org.axdt.axdoc.impl.AXMemberImpl |
| 1167 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXMember() |
| | 1163 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXMemberImpl <em>AX Member</em>}' class. |
| | 1164 | * <!-- begin-user-doc --> |
| | 1165 | * <!-- end-user-doc --> |
| | 1166 | * @see org.axdt.axdoc.model.impl.AXMemberImpl |
| | 1167 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXMember() |
| 1168 | 1168 | * @generated |
| 1169 | 1169 | */ |
| … |
… |
|
| 1211 | 1211 | |
| 1212 | 1212 | /** |
| 1213 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXIndexImpl <em>AX Index</em>}' class. |
| 1214 | | * <!-- begin-user-doc --> |
| 1215 | | * <!-- end-user-doc --> |
| 1216 | | * @see org.axdt.axdoc.impl.AXIndexImpl |
| 1217 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXIndex() |
| | 1213 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXIndexImpl <em>AX Index</em>}' class. |
| | 1214 | * <!-- begin-user-doc --> |
| | 1215 | * <!-- end-user-doc --> |
| | 1216 | * @see org.axdt.axdoc.model.impl.AXIndexImpl |
| | 1217 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXIndex() |
| 1218 | 1218 | * @generated |
| 1219 | 1219 | */ |
| … |
… |
|
| 1253 | 1253 | |
| 1254 | 1254 | /** |
| 1255 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXRootImpl <em>AX Root</em>}' class. |
| 1256 | | * <!-- begin-user-doc --> |
| 1257 | | * <!-- end-user-doc --> |
| 1258 | | * @see org.axdt.axdoc.impl.AXRootImpl |
| 1259 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXRoot() |
| | 1255 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXRootImpl <em>AX Root</em>}' class. |
| | 1256 | * <!-- begin-user-doc --> |
| | 1257 | * <!-- end-user-doc --> |
| | 1258 | * @see org.axdt.axdoc.model.impl.AXRootImpl |
| | 1259 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXRoot() |
| 1260 | 1260 | * @generated |
| 1261 | 1261 | */ |
| … |
… |
|
| 1287 | 1287 | |
| 1288 | 1288 | /** |
| 1289 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXEntryImpl <em>AX Entry</em>}' class. |
| 1290 | | * <!-- begin-user-doc --> |
| 1291 | | * <!-- end-user-doc --> |
| 1292 | | * @see org.axdt.axdoc.impl.AXEntryImpl |
| 1293 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXEntry() |
| | 1289 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXEntryImpl <em>AX Entry</em>}' class. |
| | 1290 | * <!-- begin-user-doc --> |
| | 1291 | * <!-- end-user-doc --> |
| | 1292 | * @see org.axdt.axdoc.model.impl.AXEntryImpl |
| | 1293 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXEntry() |
| 1294 | 1294 | * @generated |
| 1295 | 1295 | */ |
| … |
… |
|
| 1313 | 1313 | |
| 1314 | 1314 | /** |
| 1315 | | * The meta object literal for the '{@link org.axdt.axdoc.impl.AXIndexNodeImpl <em>AX Index Node</em>}' class. |
| 1316 | | * <!-- begin-user-doc --> |
| 1317 | | * <!-- end-user-doc --> |
| 1318 | | * @see org.axdt.axdoc.impl.AXIndexNodeImpl |
| 1319 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXIndexNode() |
| | 1315 | * The meta object literal for the '{@link org.axdt.axdoc.model.impl.AXIndexNodeImpl <em>AX Index Node</em>}' class. |
| | 1316 | * <!-- begin-user-doc --> |
| | 1317 | * <!-- end-user-doc --> |
| | 1318 | * @see org.axdt.axdoc.model.impl.AXIndexNodeImpl |
| | 1319 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXIndexNode() |
| 1320 | 1320 | * @generated |
| 1321 | 1321 | */ |
| … |
… |
|
| 1360 | 1360 | * <!-- end-user-doc --> |
| 1361 | 1361 | * @see org.axdt.axdoc.model.AXMemberHolder |
| 1362 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXMemberHolder() |
| | 1362 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXMemberHolder() |
| 1363 | 1363 | * @generated |
| 1364 | 1364 | */ |
| … |
… |
|
| 1379 | 1379 | * <!-- end-user-doc --> |
| 1380 | 1380 | * @see org.axdt.axdoc.model.AXLevel |
| 1381 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXLevel() |
| | 1381 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXLevel() |
| 1382 | 1382 | * @generated |
| 1383 | 1383 | */ |
| … |
… |
|
| 1389 | 1389 | * <!-- end-user-doc --> |
| 1390 | 1390 | * @see org.axdt.axdoc.model.AXRootType |
| 1391 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXRootType() |
| | 1391 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXRootType() |
| 1392 | 1392 | * @generated |
| 1393 | 1393 | */ |
| … |
… |
|
| 1399 | 1399 | * <!-- end-user-doc --> |
| 1400 | 1400 | * @see org.axdt.axdoc.model.AXEntryType |
| 1401 | | * @see org.axdt.axdoc.impl.AXDocPackageImpl#getAXEntryType() |
| | 1401 | * @see org.axdt.axdoc.model.impl.AXDocPackageImpl#getAXEntryType() |
| 1402 | 1402 | * @generated |
| 1403 | 1403 | */ |
-
|
r9a9ef10
|
r79dd699
|
|
| 20 | 20 | * </p> |
| 21 | 21 | * |
| 22 | | * @see org.axdt.axdoc.AXDocPackage#getAXEntry() |
| | 22 | * @see org.axdt.axdoc.model.AXDocPackage#getAXEntry() |
| 23 | 23 | * @model |
| 24 | 24 | * @generated |
| … |
… |
|
| 37 | 37 | * @see org.axdt.axdoc.model.AXEntryType |
| 38 | 38 | * @see #setType(AXEntryType) |
| 39 | | * @see org.axdt.axdoc.AXDocPackage#getAXEntry_Type() |
| | 39 | * @see org.axdt.axdoc.model.AXDocPackage#getAXEntry_Type() |
| 40 | 40 | * @model |
| 41 | 41 | * @generated |
| … |
… |
|
| 65 | 65 | * @return the value of the '<em>Parent</em>' container reference. |
| 66 | 66 | * @see #setParent(AXIndexNode) |
| 67 | | * @see org.axdt.axdoc.AXDocPackage#getAXEntry_Parent() |
| | 67 | * @see org.axdt.axdoc.model.AXDocPackage#getAXEntry_Parent() |
| 68 | 68 | * @see org.axdt.axdoc.model.AXIndexNode#getEntries |
| 69 | 69 | * @model opposite="entries" |
-
|
r9a9ef10
|
r79dd699
|
|
| 18 | 18 | * and utility methods for working with them. |
| 19 | 19 | * <!-- end-user-doc --> |
| 20 | | * @see org.axdt.axdoc.AXDocPackage#getAXEntryType() |
| | 20 | * @see org.axdt.axdoc.model.AXDocPackage#getAXEntryType() |
| 21 | 21 | * @model |
| 22 | 22 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 24 | 24 | * </p> |
| 25 | 25 | * |
| 26 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndex() |
| | 26 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndex() |
| 27 | 27 | * @model |
| 28 | 28 | * @generated |
| … |
… |
|
| 41 | 41 | * <!-- end-user-doc --> |
| 42 | 42 | * @return the value of the '<em>Indexes</em>' containment reference list. |
| 43 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndex_Indexes() |
| | 43 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndex_Indexes() |
| 44 | 44 | * @see org.axdt.axdoc.model.AXIndex#getParent |
| 45 | 45 | * @model opposite="parent" containment="true" keys="id" |
| … |
… |
|
| 59 | 59 | * @return the value of the '<em>Parent</em>' container reference. |
| 60 | 60 | * @see #setParent(AXIndex) |
| 61 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndex_Parent() |
| | 61 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndex_Parent() |
| 62 | 62 | * @see org.axdt.axdoc.model.AXIndex#getIndexes |
| 63 | 63 | * @model opposite="indexes" |
| … |
… |
|
| 86 | 86 | * @return the value of the '<em>Reference</em>' reference. |
| 87 | 87 | * @see #setReference(AXPackage) |
| 88 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndex_Reference() |
| | 88 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndex_Reference() |
| 89 | 89 | * @model |
| 90 | 90 | * @generated |
| … |
… |
|
| 114 | 114 | * @see org.axdt.axdoc.model.AXLevel |
| 115 | 115 | * @see #setLevel(AXLevel) |
| 116 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndex_Level() |
| | 116 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndex_Level() |
| 117 | 117 | * @model transient="true" |
| 118 | 118 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 25 | 25 | * </p> |
| 26 | 26 | * |
| 27 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndexNode() |
| | 27 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndexNode() |
| 28 | 28 | * @model abstract="true" |
| 29 | 29 | * @generated |
| … |
… |
|
| 40 | 40 | * @return the value of the '<em>Name</em>' attribute. |
| 41 | 41 | * @see #setName(String) |
| 42 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndexNode_Name() |
| | 42 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndexNode_Name() |
| 43 | 43 | * @model required="true" |
| 44 | 44 | * @generated |
| … |
… |
|
| 67 | 67 | * <!-- end-user-doc --> |
| 68 | 68 | * @return the value of the '<em>Entries</em>' containment reference list. |
| 69 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndexNode_Entries() |
| | 69 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndexNode_Entries() |
| 70 | 70 | * @see org.axdt.axdoc.model.AXEntry#getParent |
| 71 | 71 | * @model opposite="parent" containment="true" keys="id" |
| … |
… |
|
| 83 | 83 | * <!-- end-user-doc --> |
| 84 | 84 | * @return the value of the '<em>Id</em>' attribute. |
| 85 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndexNode_Id() |
| | 85 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndexNode_Id() |
| 86 | 86 | * @model id="true" transient="true" changeable="false" derived="true" |
| 87 | 87 | * @generated |
| … |
… |
|
| 98 | 98 | * <!-- end-user-doc --> |
| 99 | 99 | * @return the value of the '<em>Basic Parent</em>' reference. |
| 100 | | * @see org.axdt.axdoc.AXDocPackage#getAXIndexNode_BasicParent() |
| | 100 | * @see org.axdt.axdoc.model.AXDocPackage#getAXIndexNode_BasicParent() |
| 101 | 101 | * @model transient="true" changeable="false" volatile="true" |
| 102 | 102 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 18 | 18 | * and utility methods for working with them. |
| 19 | 19 | * <!-- end-user-doc --> |
| 20 | | * @see org.axdt.axdoc.AXDocPackage#getAXLevel() |
| | 20 | * @see org.axdt.axdoc.model.AXDocPackage#getAXLevel() |
| 21 | 21 | * @model |
| 22 | 22 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 23 | 23 | * </p> |
| 24 | 24 | * |
| 25 | | * @see org.axdt.axdoc.AXDocPackage#getAXMember() |
| | 25 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMember() |
| 26 | 26 | * @model |
| 27 | 27 | * @generated |
| … |
… |
|
| 40 | 40 | * @return the value of the '<em>Var</em>' attribute. |
| 41 | 41 | * @see #setVar(boolean) |
| 42 | | * @see org.axdt.axdoc.AXDocPackage#getAXMember_Var() |
| | 42 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMember_Var() |
| 43 | 43 | * @model default="true" |
| 44 | 44 | * @generated |
| … |
… |
|
| 66 | 66 | * @return the value of the '<em>Function</em>' attribute. |
| 67 | 67 | * @see #setFunction(boolean) |
| 68 | | * @see org.axdt.axdoc.AXDocPackage#getAXMember_Function() |
| | 68 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMember_Function() |
| 69 | 69 | * @model |
| 70 | 70 | * @generated |
| … |
… |
|
| 92 | 92 | * @return the value of the '<em>Const</em>' attribute. |
| 93 | 93 | * @see #setConst(boolean) |
| 94 | | * @see org.axdt.axdoc.AXDocPackage#getAXMember_Const() |
| | 94 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMember_Const() |
| 95 | 95 | * @model |
| 96 | 96 | * @generated |
| … |
… |
|
| 118 | 118 | * @return the value of the '<em>Static</em>' attribute. |
| 119 | 119 | * @see #setStatic(boolean) |
| 120 | | * @see org.axdt.axdoc.AXDocPackage#getAXMember_Static() |
| | 120 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMember_Static() |
| 121 | 121 | * @model |
| 122 | 122 | * @generated |
| … |
… |
|
| 144 | 144 | * @return the value of the '<em>Protected</em>' attribute. |
| 145 | 145 | * @see #setProtected(boolean) |
| 146 | | * @see org.axdt.axdoc.AXDocPackage#getAXMember_Protected() |
| | 146 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMember_Protected() |
| 147 | 147 | * @model |
| 148 | 148 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 21 | 21 | * </p> |
| 22 | 22 | * |
| 23 | | * @see org.axdt.axdoc.AXDocPackage#getAXMemberHolder() |
| | 23 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMemberHolder() |
| 24 | 24 | * @model interface="true" abstract="true" |
| 25 | 25 | * @generated |
| … |
… |
|
| 36 | 36 | * <!-- end-user-doc --> |
| 37 | 37 | * @return the value of the '<em>Members</em>' containment reference list. |
| 38 | | * @see org.axdt.axdoc.AXDocPackage#getAXMemberHolder_Members() |
| | 38 | * @see org.axdt.axdoc.model.AXDocPackage#getAXMemberHolder_Members() |
| 39 | 39 | * @model containment="true" keys="name function" |
| 40 | 40 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 23 | 23 | * </p> |
| 24 | 24 | * |
| 25 | | * @see org.axdt.axdoc.AXDocPackage#getAXNode() |
| | 25 | * @see org.axdt.axdoc.model.AXDocPackage#getAXNode() |
| 26 | 26 | * @model abstract="true" |
| 27 | 27 | * @generated |
| … |
… |
|
| 38 | 38 | * @return the value of the '<em>Name</em>' attribute. |
| 39 | 39 | * @see #setName(String) |
| 40 | | * @see org.axdt.axdoc.AXDocPackage#getAXNode_Name() |
| | 40 | * @see org.axdt.axdoc.model.AXDocPackage#getAXNode_Name() |
| 41 | 41 | * @model id="true" required="true" |
| 42 | 42 | * @generated |
| … |
… |
|
| 64 | 64 | * <!-- end-user-doc --> |
| 65 | 65 | * @return the value of the '<em>Asdoc</em>' attribute list. |
| 66 | | * @see org.axdt.axdoc.AXDocPackage#getAXNode_Asdoc() |
| | 66 | * @see org.axdt.axdoc.model.AXDocPackage#getAXNode_Asdoc() |
| 67 | 67 | * @model unique="false" ordered="false" |
| 68 | 68 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 21 | 21 | * </p> |
| 22 | 22 | * |
| 23 | | * @see org.axdt.axdoc.AXDocPackage#getAXPackage() |
| | 23 | * @see org.axdt.axdoc.model.AXDocPackage#getAXPackage() |
| 24 | 24 | * @model |
| 25 | 25 | * @generated |
| … |
… |
|
| 36 | 36 | * <!-- end-user-doc --> |
| 37 | 37 | * @return the value of the '<em>Types</em>' containment reference list. |
| 38 | | * @see org.axdt.axdoc.AXDocPackage#getAXPackage_Types() |
| | 38 | * @see org.axdt.axdoc.model.AXDocPackage#getAXPackage_Types() |
| 39 | 39 | * @model containment="true" keys="name" |
| 40 | 40 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 21 | 21 | * </p> |
| 22 | 22 | * |
| 23 | | * @see org.axdt.axdoc.AXDocPackage#getAXRoot() |
| | 23 | * @see org.axdt.axdoc.model.AXDocPackage#getAXRoot() |
| 24 | 24 | * @model |
| 25 | 25 | * @generated |
| … |
… |
|
| 36 | 36 | * @return the value of the '<em>Url</em>' attribute. |
| 37 | 37 | * @see #setUrl(String) |
| 38 | | * @see org.axdt.axdoc.AXDocPackage#getAXRoot_Url() |
| | 38 | * @see org.axdt.axdoc.model.AXDocPackage#getAXRoot_Url() |
| 39 | 39 | * @model |
| 40 | 40 | * @generated |
| … |
… |
|
| 64 | 64 | * @see org.axdt.axdoc.model.AXRootType |
| 65 | 65 | * @see #setRootType(AXRootType) |
| 66 | | * @see org.axdt.axdoc.AXDocPackage#getAXRoot_RootType() |
| | 66 | * @see org.axdt.axdoc.model.AXDocPackage#getAXRoot_RootType() |
| 67 | 67 | * @model |
| 68 | 68 | * @generated |
| … |
… |
|
| 93 | 93 | * @see org.axdt.axdoc.model.AXLevel |
| 94 | 94 | * @see #setRootLevel(AXLevel) |
| 95 | | * @see org.axdt.axdoc.AXDocPackage#getAXRoot_RootLevel() |
| | 95 | * @see org.axdt.axdoc.model.AXDocPackage#getAXRoot_RootLevel() |
| 96 | 96 | * @model transient="true" |
| 97 | 97 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 18 | 18 | * and utility methods for working with them. |
| 19 | 19 | * <!-- end-user-doc --> |
| 20 | | * @see org.axdt.axdoc.AXDocPackage#getAXRootType() |
| | 20 | * @see org.axdt.axdoc.model.AXDocPackage#getAXRootType() |
| 21 | 21 | * @model |
| 22 | 22 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 19 | 19 | * </p> |
| 20 | 20 | * |
| 21 | | * @see org.axdt.axdoc.AXDocPackage#getAXType() |
| | 21 | * @see org.axdt.axdoc.model.AXDocPackage#getAXType() |
| 22 | 22 | * @model |
| 23 | 23 | * @generated |
| … |
… |
|
| 34 | 34 | * @return the value of the '<em>Interface</em>' attribute. |
| 35 | 35 | * @see #setInterface(boolean) |
| 36 | | * @see org.axdt.axdoc.AXDocPackage#getAXType_Interface() |
| | 36 | * @see org.axdt.axdoc.model.AXDocPackage#getAXType_Interface() |
| 37 | 37 | * @model |
| 38 | 38 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| 8 | | |
| 9 | | import org.axdt.axdoc.AXDocFactory; |
| 10 | | import org.axdt.axdoc.AXDocPackage; |
| | 7 | package org.axdt.axdoc.model.impl; |
| | 8 | |
| | 9 | import org.axdt.axdoc.model.AXDocFactory; |
| | 10 | import org.axdt.axdoc.model.AXDocPackage; |
| 11 | 11 | import org.axdt.axdoc.model.AXEntry; |
| 12 | 12 | import org.axdt.axdoc.model.AXEntryType; |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| 8 | | |
| 9 | | import org.axdt.axdoc.AXDocFactory; |
| 10 | | import org.axdt.axdoc.AXDocPackage; |
| | 7 | package org.axdt.axdoc.model.impl; |
| | 8 | |
| | 9 | import org.axdt.axdoc.model.AXDocFactory; |
| | 10 | import org.axdt.axdoc.model.AXDocPackage; |
| 11 | 11 | import org.axdt.axdoc.model.AXEntry; |
| 12 | 12 | import org.axdt.axdoc.model.AXEntryType; |
| … |
… |
|
| 131 | 131 | * <!-- end-user-doc --> |
| 132 | 132 | * @see org.eclipse.emf.ecore.EPackage.Registry |
| 133 | | * @see org.axdt.axdoc.AXDocPackage#eNS_URI |
| | 133 | * @see org.axdt.axdoc.model.AXDocPackage#eNS_URI |
| 134 | 134 | * @see #init() |
| 135 | 135 | * @generated |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXEntry; |
| 13 | 13 | import org.axdt.axdoc.model.AXEntryType; |
| … |
… |
|
| 30 | 30 | * The following features are implemented: |
| 31 | 31 | * <ul> |
| 32 | | * <li>{@link org.axdt.axdoc.impl.AXEntryImpl#getType <em>Type</em>}</li> |
| 33 | | * <li>{@link org.axdt.axdoc.impl.AXEntryImpl#getParent <em>Parent</em>}</li> |
| | 32 | * <li>{@link org.axdt.axdoc.model.impl.AXEntryImpl#getType <em>Type</em>}</li> |
| | 33 | * <li>{@link org.axdt.axdoc.model.impl.AXEntryImpl#getParent <em>Parent</em>}</li> |
| 34 | 34 | * </ul> |
| 35 | 35 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocFactory; |
| | 12 | import org.axdt.axdoc.model.AXDocPackage; |
| 13 | 13 | import org.axdt.axdoc.model.AXEntry; |
| 14 | 14 | import org.axdt.axdoc.model.AXIndex; |
| … |
… |
|
| 34 | 34 | * The following features are implemented: |
| 35 | 35 | * <ul> |
| 36 | | * <li>{@link org.axdt.axdoc.impl.AXIndexImpl#getReference <em>Reference</em>}</li> |
| 37 | | * <li>{@link org.axdt.axdoc.impl.AXIndexImpl#getLevel <em>Level</em>}</li> |
| 38 | | * <li>{@link org.axdt.axdoc.impl.AXIndexImpl#getIndexes <em>Indexes</em>}</li> |
| 39 | | * <li>{@link org.axdt.axdoc.impl.AXIndexImpl#getParent <em>Parent</em>}</li> |
| | 36 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexImpl#getReference <em>Reference</em>}</li> |
| | 37 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexImpl#getLevel <em>Level</em>}</li> |
| | 38 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexImpl#getIndexes <em>Indexes</em>}</li> |
| | 39 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexImpl#getParent <em>Parent</em>}</li> |
| 40 | 40 | * </ul> |
| 41 | 41 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocFactory; |
| | 12 | import org.axdt.axdoc.model.AXDocPackage; |
| 13 | 13 | import org.axdt.axdoc.model.AXEntry; |
| 14 | 14 | import org.axdt.axdoc.model.AXEntryType; |
| … |
… |
|
| 33 | 33 | * The following features are implemented: |
| 34 | 34 | * <ul> |
| 35 | | * <li>{@link org.axdt.axdoc.impl.AXIndexNodeImpl#getName <em>Name</em>}</li> |
| 36 | | * <li>{@link org.axdt.axdoc.impl.AXIndexNodeImpl#getEntries <em>Entries</em>}</li> |
| 37 | | * <li>{@link org.axdt.axdoc.impl.AXIndexNodeImpl#getId <em>Id</em>}</li> |
| 38 | | * <li>{@link org.axdt.axdoc.impl.AXIndexNodeImpl#getBasicParent <em>Basic Parent</em>}</li> |
| | 35 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexNodeImpl#getName <em>Name</em>}</li> |
| | 36 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexNodeImpl#getEntries <em>Entries</em>}</li> |
| | 37 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexNodeImpl#getId <em>Id</em>}</li> |
| | 38 | * <li>{@link org.axdt.axdoc.model.impl.AXIndexNodeImpl#getBasicParent <em>Basic Parent</em>}</li> |
| 39 | 39 | * </ul> |
| 40 | 40 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXMember; |
| 13 | 13 | import org.eclipse.emf.common.notify.Notification; |
| … |
… |
|
| 22 | 22 | * The following features are implemented: |
| 23 | 23 | * <ul> |
| 24 | | * <li>{@link org.axdt.axdoc.impl.AXMemberImpl#isVar <em>Var</em>}</li> |
| 25 | | * <li>{@link org.axdt.axdoc.impl.AXMemberImpl#isFunction <em>Function</em>}</li> |
| 26 | | * <li>{@link org.axdt.axdoc.impl.AXMemberImpl#isConst <em>Const</em>}</li> |
| 27 | | * <li>{@link org.axdt.axdoc.impl.AXMemberImpl#isStatic <em>Static</em>}</li> |
| 28 | | * <li>{@link org.axdt.axdoc.impl.AXMemberImpl#isProtected <em>Protected</em>}</li> |
| | 24 | * <li>{@link org.axdt.axdoc.model.impl.AXMemberImpl#isVar <em>Var</em>}</li> |
| | 25 | * <li>{@link org.axdt.axdoc.model.impl.AXMemberImpl#isFunction <em>Function</em>}</li> |
| | 26 | * <li>{@link org.axdt.axdoc.model.impl.AXMemberImpl#isConst <em>Const</em>}</li> |
| | 27 | * <li>{@link org.axdt.axdoc.model.impl.AXMemberImpl#isStatic <em>Static</em>}</li> |
| | 28 | * <li>{@link org.axdt.axdoc.model.impl.AXMemberImpl#isProtected <em>Protected</em>}</li> |
| 29 | 29 | * </ul> |
| 30 | 30 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXNode; |
| 13 | 13 | import org.eclipse.emf.common.notify.Notification; |
| … |
… |
|
| 25 | 25 | * The following features are implemented: |
| 26 | 26 | * <ul> |
| 27 | | * <li>{@link org.axdt.axdoc.impl.AXNodeImpl#getName <em>Name</em>}</li> |
| 28 | | * <li>{@link org.axdt.axdoc.impl.AXNodeImpl#getAsdoc <em>Asdoc</em>}</li> |
| | 27 | * <li>{@link org.axdt.axdoc.model.impl.AXNodeImpl#getName <em>Name</em>}</li> |
| | 28 | * <li>{@link org.axdt.axdoc.model.impl.AXNodeImpl#getAsdoc <em>Asdoc</em>}</li> |
| 29 | 29 | * </ul> |
| 30 | 30 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXMember; |
| 13 | 13 | import org.axdt.axdoc.model.AXPackage; |
| … |
… |
|
| 27 | 27 | * The following features are implemented: |
| 28 | 28 | * <ul> |
| 29 | | * <li>{@link org.axdt.axdoc.impl.AXPackageImpl#getMembers <em>Members</em>}</li> |
| 30 | | * <li>{@link org.axdt.axdoc.impl.AXPackageImpl#getTypes <em>Types</em>}</li> |
| | 29 | * <li>{@link org.axdt.axdoc.model.impl.AXPackageImpl#getMembers <em>Members</em>}</li> |
| | 30 | * <li>{@link org.axdt.axdoc.model.impl.AXPackageImpl#getTypes <em>Types</em>}</li> |
| 31 | 31 | * </ul> |
| 32 | 32 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXEntry; |
| 13 | 13 | import org.axdt.axdoc.model.AXIndex; |
| … |
… |
|
| 27 | 27 | * The following features are implemented: |
| 28 | 28 | * <ul> |
| 29 | | * <li>{@link org.axdt.axdoc.impl.AXRootImpl#getUrl <em>Url</em>}</li> |
| 30 | | * <li>{@link org.axdt.axdoc.impl.AXRootImpl#getRootType <em>Root Type</em>}</li> |
| 31 | | * <li>{@link org.axdt.axdoc.impl.AXRootImpl#getRootLevel <em>Root Level</em>}</li> |
| | 29 | * <li>{@link org.axdt.axdoc.model.impl.AXRootImpl#getUrl <em>Url</em>}</li> |
| | 30 | * <li>{@link org.axdt.axdoc.model.impl.AXRootImpl#getRootType <em>Root Type</em>}</li> |
| | 31 | * <li>{@link org.axdt.axdoc.model.impl.AXRootImpl#getRootLevel <em>Root Level</em>}</li> |
| 32 | 32 | * </ul> |
| 33 | 33 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.impl; |
| | 7 | package org.axdt.axdoc.model.impl; |
| 8 | 8 | |
| 9 | 9 | import java.util.Collection; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXMember; |
| 13 | 13 | import org.axdt.axdoc.model.AXType; |
| … |
… |
|
| 28 | 28 | * The following features are implemented: |
| 29 | 29 | * <ul> |
| 30 | | * <li>{@link org.axdt.axdoc.impl.AXTypeImpl#getMembers <em>Members</em>}</li> |
| 31 | | * <li>{@link org.axdt.axdoc.impl.AXTypeImpl#isInterface <em>Interface</em>}</li> |
| | 30 | * <li>{@link org.axdt.axdoc.model.impl.AXTypeImpl#getMembers <em>Members</em>}</li> |
| | 31 | * <li>{@link org.axdt.axdoc.model.impl.AXTypeImpl#isInterface <em>Interface</em>}</li> |
| 32 | 32 | * </ul> |
| 33 | 33 | * </p> |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.util; |
| 8 | | |
| 9 | | import org.axdt.axdoc.AXDocPackage; |
| | 7 | package org.axdt.axdoc.model.util; |
| | 8 | |
| | 9 | import org.axdt.axdoc.model.AXDocPackage; |
| 10 | 10 | import org.axdt.axdoc.model.AXEntry; |
| 11 | 11 | import org.axdt.axdoc.model.AXIndex; |
| … |
… |
|
| 27 | 27 | * It provides an adapter <code>createXXX</code> method for each class of the model. |
| 28 | 28 | * <!-- end-user-doc --> |
| 29 | | * @see org.axdt.axdoc.AXDocPackage |
| | 29 | * @see org.axdt.axdoc.model.AXDocPackage |
| 30 | 30 | * @generated |
| 31 | 31 | */ |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc.util; |
| | 1 | package org.axdt.axdoc.model.util; |
| 2 | 2 | |
| 3 | 3 | import java.io.FileNotFoundException; |
| … |
… |
|
| 9 | 9 | import javax.xml.xpath.XPathExpressionException; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| | 11 | import org.axdt.axdoc.model.AXDocFactory; |
| 12 | 12 | import org.axdt.axdoc.model.AXEntry; |
| 13 | 13 | import org.axdt.axdoc.model.AXEntryType; |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.util; |
| | 7 | package org.axdt.axdoc.model.util; |
| 8 | 8 | |
| 9 | 9 | import org.eclipse.emf.common.util.URI; |
| … |
… |
|
| 15 | 15 | * The <b>Resource Factory</b> associated with the package. |
| 16 | 16 | * <!-- end-user-doc --> |
| 17 | | * @see org.axdt.axdoc.util.AXDocResourceImpl |
| | 17 | * @see org.axdt.axdoc.model.util.AXDocResourceImpl |
| 18 | 18 | * @generated |
| 19 | 19 | */ |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.util; |
| | 7 | package org.axdt.axdoc.model.util; |
| 8 | 8 | |
| 9 | 9 | import org.eclipse.emf.common.util.URI; |
| … |
… |
|
| 14 | 14 | * The <b>Resource </b> associated with the package. |
| 15 | 15 | * <!-- end-user-doc --> |
| 16 | | * @see org.axdt.axdoc.util.AXDocResourceFactoryImpl |
| | 16 | * @see org.axdt.axdoc.model.util.AXDocResourceFactoryImpl |
| 17 | 17 | * @generated |
| 18 | 18 | */ |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.util; |
| | 7 | package org.axdt.axdoc.model.util; |
| 8 | 8 | |
| 9 | 9 | import java.util.List; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.axdt.axdoc.model.AXEntry; |
| 13 | 13 | import org.axdt.axdoc.model.AXIndex; |
| … |
… |
|
| 32 | 32 | * which is the result of the switch. |
| 33 | 33 | * <!-- end-user-doc --> |
| 34 | | * @see org.axdt.axdoc.AXDocPackage |
| | 34 | * @see org.axdt.axdoc.model.AXDocPackage |
| 35 | 35 | * @generated |
| 36 | 36 | */ |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | * $Id$ |
| 6 | 6 | */ |
| 7 | | package org.axdt.axdoc.util; |
| | 7 | package org.axdt.axdoc.model.util; |
| 8 | 8 | |
| 9 | 9 | import java.util.Map; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocPackage; |
| | 11 | import org.axdt.axdoc.model.AXDocPackage; |
| 12 | 12 | import org.eclipse.emf.ecore.EPackage; |
| 13 | 13 | import org.eclipse.emf.ecore.resource.Resource; |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc.util; |
| | 1 | package org.axdt.axdoc.model.util; |
| 2 | 2 | |
| 3 | 3 | import java.io.ByteArrayInputStream; |
| … |
… |
|
| 6 | 6 | import java.util.List; |
| 7 | 7 | |
| 8 | | import org.axdt.axdoc.AXDocFactory; |
| | 8 | import org.axdt.axdoc.model.AXDocFactory; |
| 9 | 9 | import org.axdt.axdoc.model.AXEntry; |
| 10 | 10 | import org.axdt.axdoc.model.AXIndex; |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc.util; |
| | 1 | package org.axdt.axdoc.model.util; |
| 2 | 2 | |
| 3 | 3 | import java.io.IOException; |
-
|
r9a9ef10
|
r79dd699
|
|
| 5 | 5 | Bundle-Version: 0.0.6.0 |
| 6 | 6 | Bundle-Vendor: http://axdt.org |
| 7 | | Fragment-Host: org.axdt.axdoc |
| | 7 | Fragment-Host: org.axdt.axdoc.model |
| 8 | 8 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 |
| 9 | 9 | Require-Bundle: org.junit |
-
|
r9a9ef10
|
r79dd699
|
|
| 11 | 11 | import junit.textui.TestRunner; |
| 12 | 12 | |
| 13 | | import org.axdt.axdoc.coffeetime.ASDocFormatTest; |
| | 13 | import org.axdt.axdoc.model.AXDocTests; |
| | 14 | import org.axdt.axdoc.model.coffeetime.ASDocFormatTest; |
| 14 | 15 | |
| 15 | 16 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 12 | 12 | |
| 13 | 13 | import org.axdt.axdoc.model.AXDocTests; |
| 14 | | import org.axdt.axdoc.util.AXDocParserTest; |
| 15 | | import org.axdt.axdoc.util.AXDocUtilTest; |
| | 14 | import org.axdt.axdoc.model.util.AXDocParserTest; |
| | 15 | import org.axdt.axdoc.model.util.AXDocUtilTest; |
| 16 | 16 | |
| 17 | 17 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 8 | 8 | |
| 9 | 9 | import junit.textui.TestRunner; |
| 10 | | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | 10 | |
| 13 | 11 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 9 | 9 | import junit.framework.TestCase; |
| 10 | 10 | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | | import org.axdt.axdoc.util.AXUtil; |
| | 11 | import org.axdt.axdoc.model.util.AXUtil; |
| 13 | 12 | |
| 14 | 13 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 8 | 8 | |
| 9 | 9 | import junit.textui.TestRunner; |
| 10 | | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | 10 | |
| 13 | 11 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 8 | 8 | |
| 9 | 9 | import junit.textui.TestRunner; |
| 10 | | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | 10 | |
| 13 | 11 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 8 | 8 | |
| 9 | 9 | import junit.textui.TestRunner; |
| 10 | | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | 10 | |
| 13 | 11 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 8 | 8 | |
| 9 | 9 | import junit.textui.TestRunner; |
| 10 | | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | 10 | |
| 13 | 11 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 8 | 8 | |
| 9 | 9 | import junit.textui.TestRunner; |
| 10 | | |
| 11 | | import org.axdt.axdoc.AXDocFactory; |
| 12 | 10 | |
| 13 | 11 | /** |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc.coffeetime; |
| | 1 | package org.axdt.axdoc.model.coffeetime; |
| 2 | 2 | |
| 3 | 3 | import java.util.List; |
| … |
… |
|
| 12 | 12 | import org.axdt.axdoc.model.AXLevel; |
| 13 | 13 | import org.axdt.axdoc.model.AXRoot; |
| 14 | | import org.axdt.axdoc.util.AXDocParser; |
| 15 | | import org.axdt.axdoc.util.AXUtil; |
| 16 | | import org.axdt.axdoc.util.HtmlLoader; |
| | 14 | import org.axdt.axdoc.model.util.AXDocParser; |
| | 15 | import org.axdt.axdoc.model.util.AXUtil; |
| | 16 | import org.axdt.axdoc.model.util.HtmlLoader; |
| 17 | 17 | import org.w3c.dom.Node; |
| 18 | 18 | |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc.util; |
| | 1 | package org.axdt.axdoc.model.util; |
| 2 | 2 | |
| 3 | 3 | import junit.framework.TestCase; |
| … |
… |
|
| 7 | 7 | import org.axdt.axdoc.model.AXLevel; |
| 8 | 8 | import org.axdt.axdoc.model.AXRoot; |
| | 9 | import org.axdt.axdoc.model.util.AXDocParser; |
| 9 | 10 | |
| 10 | 11 | public class AXDocParserTest extends TestCase implements TestConstants { |
-
|
r9a9ef10
|
r79dd699
|
|
| 1 | | package org.axdt.axdoc.util; |
| | 1 | package org.axdt.axdoc.model.util; |
| 2 | 2 | |
| 3 | 3 | import junit.framework.TestCase; |
| 4 | 4 | |
| 5 | | import org.axdt.axdoc.AXDocFactory; |
| 6 | 5 | import org.axdt.axdoc.TestConstants; |
| | 6 | import org.axdt.axdoc.model.AXDocFactory; |
| 7 | 7 | import org.axdt.axdoc.model.AXEntryType; |
| 8 | 8 | import org.axdt.axdoc.model.AXIndex; |
| 9 | 9 | import org.axdt.axdoc.model.AXPackage; |
| 10 | 10 | import org.axdt.axdoc.model.AXRoot; |
| | 11 | import org.axdt.axdoc.model.util.AXUtil; |
| 11 | 12 | import org.eclipse.emf.ecore.resource.Resource; |
| 12 | 13 | |
-
-
|
rfc56e42
|
r79dd699
|
|
| 3 | 3 | import java.util.Arrays; |
| 4 | 4 | |
| | 5 | import org.axdt.util.IFlexErrorCodes; |
| 5 | 6 | import org.eclipse.swt.program.Program; |
| 6 | 7 | import org.eclipse.ui.console.IHyperlink; |