├── EA_ReqIF_AddIn ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── AddIn.cs ├── BasicReqIfFileImporter.cs ├── DatatypesImporter.cs ├── EA_ReqIF_AddIn.PartCover.Settings ├── EA_ReqIF_AddIn.csproj ├── EnterpriseArchitectInteropFailure.cs ├── EnterpriseArchitectModelElement.cs ├── EnterpriseArchitectModelElementFactory.cs ├── IReqIfParserCallbackReceiver.cs ├── Identifiable.cs ├── IdentifiablesImporter.cs ├── ImportExportForm.Designer.cs ├── ImportExportForm.cs ├── ImportExportForm.resx ├── Interop.EA.dll ├── ModelBuilder.cs ├── ParserFailureException.cs ├── Properties │ └── AssemblyInfo.cs ├── RelationGroupType.cs ├── ReqIfContentImporter.cs ├── ReqIfDocument.cs ├── ReqIfFileValidator.cs ├── ReqIfHeaderImporter.cs ├── ReqIfParser.cs ├── RequirementsFromReqIfFileImporter.cs ├── RequirementsPackage.cs ├── SpecHierarchy.cs ├── SpecHierarchyImporter.cs ├── SpecObject.cs ├── SpecObjectType.cs ├── SpecObjectsImporter.cs ├── SpecRelation.cs ├── SpecRelationGroupsImporter.cs ├── SpecRelationType.cs ├── SpecRelationsImporter.cs ├── SpecTypesImporter.cs ├── Specification.cs ├── SpecificationType.cs ├── SpecificationsImporter.cs └── example.reqif.xml ├── EA_ReqIF_AddIn_Setup ├── EA_ReqIF_AddIn_Setup.wixproj ├── Files.wxs ├── Setup.wxs └── license.rtf ├── EnterpriseArchitect_ReqIF_AddIn.sln ├── LICENSE └── README /EA_ReqIF_AddIn/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/AboutBox.Designer.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/AboutBox.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/AboutBox.resx -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/AddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/AddIn.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/BasicReqIfFileImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/BasicReqIfFileImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/DatatypesImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/DatatypesImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/EA_ReqIF_AddIn.PartCover.Settings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/EA_ReqIF_AddIn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/EA_ReqIF_AddIn.csproj -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/EnterpriseArchitectInteropFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/EnterpriseArchitectInteropFailure.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/EnterpriseArchitectModelElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/EnterpriseArchitectModelElement.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/EnterpriseArchitectModelElementFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/EnterpriseArchitectModelElementFactory.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/IReqIfParserCallbackReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/IReqIfParserCallbackReceiver.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/Identifiable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/Identifiable.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/IdentifiablesImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/IdentifiablesImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ImportExportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ImportExportForm.Designer.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ImportExportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ImportExportForm.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ImportExportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ImportExportForm.resx -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/Interop.EA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/Interop.EA.dll -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ModelBuilder.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ParserFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ParserFailureException.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/RelationGroupType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/RelationGroupType.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ReqIfContentImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ReqIfContentImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ReqIfDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ReqIfDocument.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ReqIfFileValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ReqIfFileValidator.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ReqIfHeaderImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ReqIfHeaderImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/ReqIfParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/ReqIfParser.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/RequirementsFromReqIfFileImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/RequirementsFromReqIfFileImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/RequirementsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/RequirementsPackage.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecHierarchy.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecHierarchyImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecHierarchyImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecObject.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecObjectType.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecObjectsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecObjectsImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecRelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecRelation.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecRelationGroupsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecRelationGroupsImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecRelationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecRelationType.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecRelationsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecRelationsImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecTypesImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecTypesImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/Specification.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecificationType.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/SpecificationsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/SpecificationsImporter.cs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn/example.reqif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn/example.reqif.xml -------------------------------------------------------------------------------- /EA_ReqIF_AddIn_Setup/EA_ReqIF_AddIn_Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn_Setup/EA_ReqIF_AddIn_Setup.wixproj -------------------------------------------------------------------------------- /EA_ReqIF_AddIn_Setup/Files.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn_Setup/Files.wxs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn_Setup/Setup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn_Setup/Setup.wxs -------------------------------------------------------------------------------- /EA_ReqIF_AddIn_Setup/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EA_ReqIF_AddIn_Setup/license.rtf -------------------------------------------------------------------------------- /EnterpriseArchitect_ReqIF_AddIn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/EnterpriseArchitect_ReqIF_AddIn.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsteve/EnterpriseArchitect_ReqIF_AddIn/HEAD/README --------------------------------------------------------------------------------