├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ ├── doc-gen.yml │ ├── generate-maven-sbom.yml │ ├── generate-npm-sbom.yml │ └── pull-request.yml ├── .gitignore ├── .npmrc ├── .vscode ├── settings.json ├── snippets.code-snippets └── tasks.json ├── CHANGELOG.adoc ├── CODE_OF_CONDUCT ├── CONTRIBUTING.adoc ├── LICENSE ├── LICENSE-LGPL ├── NOTICE ├── README.md ├── SECURITY.md ├── backend ├── application │ ├── pom.xml │ ├── syson-application-configuration │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.springframework.ide.eclipse.boot.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── application │ │ │ │ │ ├── configuration │ │ │ │ │ ├── StandardLibraryDocumentDownloadSearchService.java │ │ │ │ │ ├── SysMLEditingContextProcessor.java │ │ │ │ │ ├── SysMLv2EMFConfiguration.java │ │ │ │ │ ├── SysMLv2PropertiesConfigurer.java │ │ │ │ │ ├── SysMLv2RewriteProxiesResourcesFilter.java │ │ │ │ │ ├── SysONDefaultLibrariesConfiguration.java │ │ │ │ │ ├── SysONLoadDefaultLibrariesOnApplicationStartConfiguration.java │ │ │ │ │ └── SysONReferenceWidgetRootCandidateSearchProvider.java │ │ │ │ │ ├── libraries │ │ │ │ │ ├── SysONLibraryLoader.java │ │ │ │ │ └── SysONLibraryLoadingDefinition.java │ │ │ │ │ ├── migration │ │ │ │ │ ├── AnnotationAnnotatingElementMigrationParticipant.java │ │ │ │ │ ├── ConnectorAsUsageSourceAndTargetMigrationParticipant.java │ │ │ │ │ ├── DiagramOnViewUsageMigrationAdapter.java │ │ │ │ │ ├── DiagramOnViewUsageMigrationHook.java │ │ │ │ │ ├── DiagramOnViewUsageMigrationParticipant.java │ │ │ │ │ ├── MigrationParticipantService.java │ │ │ │ │ ├── OneDiagramDescriptionMigrationAdapter.java │ │ │ │ │ ├── OneDiagramDescriptionMigrationHook.java │ │ │ │ │ ├── OneDiagramDescriptionMigrationParticipant.java │ │ │ │ │ ├── StandardLibrariesElementsDiagramMigrationParticipant.java │ │ │ │ │ ├── StandardLibrariesElementsReferencesMigrationParticipant.java │ │ │ │ │ ├── StandardLibrariesIdsResourceToMapParser.java │ │ │ │ │ ├── SysONEditingContextMigrationParticipantPredicate.java │ │ │ │ │ └── ViewUsageExposeElementMigrationParticipant.java │ │ │ │ │ ├── nodes │ │ │ │ │ ├── SysMLImportedPackageNodeStyle.java │ │ │ │ │ ├── SysMLImportedPackageNodeStyleDeserializer.java │ │ │ │ │ ├── SysMLImportedPackageNodeStyleProvider.java │ │ │ │ │ ├── SysMLNoteNodeStyle.java │ │ │ │ │ ├── SysMLNoteNodeStyleDeserializer.java │ │ │ │ │ ├── SysMLNoteNodeStyleProvider.java │ │ │ │ │ ├── SysMLPackageNodeStyle.java │ │ │ │ │ ├── SysMLPackageNodeStyleDeserializer.java │ │ │ │ │ ├── SysMLPackageNodeStyleProvider.java │ │ │ │ │ ├── SysMLViewFrameNodeStyle.java │ │ │ │ │ ├── SysMLViewFrameNodeStyleDeserializer.java │ │ │ │ │ ├── SysMLViewFrameNodeStyleProvider.java │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── EditSysMLImportedPackageNodeAppearanceInput.java │ │ │ │ │ │ ├── EditSysMLNoteNodeAppearanceInput.java │ │ │ │ │ │ ├── EditSysMLPackageNodeAppearanceInput.java │ │ │ │ │ │ ├── EditSysMLViewFrameNodeAppearanceInput.java │ │ │ │ │ │ ├── SysMLImportedPackageNodeAppearanceInput.java │ │ │ │ │ │ ├── SysMLNoteNodeAppearanceInput.java │ │ │ │ │ │ ├── SysMLPackageNodeAppearanceInput.java │ │ │ │ │ │ └── SysMLViewFrameNodeAppearanceInput.java │ │ │ │ │ ├── graphql │ │ │ │ │ │ ├── MutationEditSysMLImportedPackageNodeAppearanceDataFetcher.java │ │ │ │ │ │ ├── MutationEditSysMLNoteNodeAppearanceDataFetcher.java │ │ │ │ │ │ ├── MutationEditSysMLPackageNodeAppearanceDataFetcher.java │ │ │ │ │ │ └── MutationEditSysMLViewFrameNodeAppearanceDataFetcher.java │ │ │ │ │ └── services │ │ │ │ │ │ ├── DiagramImporterSysMLImportedPackageNodeStyleAppearanceChangeHandler.java │ │ │ │ │ │ ├── DiagramImporterSysMLNoteNodeStyleAppearanceChangeHandler.java │ │ │ │ │ │ ├── DiagramImporterSysMLPackageNodeStyleAppearanceChangeHandler.java │ │ │ │ │ │ ├── DiagramImporterSysMLViewFrameNodeStyleAppearanceChangeHandler.java │ │ │ │ │ │ ├── EditSysMLImportedPackageNodeAppearanceEventHandler.java │ │ │ │ │ │ ├── EditSysMLNoteNodeAppearanceEventHandler.java │ │ │ │ │ │ ├── EditSysMLPackageNodeAppearanceEventHandler.java │ │ │ │ │ │ ├── EditSysMLViewFrameNodeAppearanceEventHandler.java │ │ │ │ │ │ ├── SysMLImportedPackageNodeAppearanceHandler.java │ │ │ │ │ │ ├── SysMLNoteNodeAppearanceHandler.java │ │ │ │ │ │ ├── SysMLPackageNodeAppearanceHandler.java │ │ │ │ │ │ └── SysMLViewFrameNodeAppearanceHandler.java │ │ │ │ │ ├── omnibox │ │ │ │ │ ├── PredicateCanEditingContextPublishSysMLProject.java │ │ │ │ │ ├── SysONOmniboxCommandProvider.java │ │ │ │ │ └── api │ │ │ │ │ │ └── IPredicateCanEditingContextPublishSysMLProject.java │ │ │ │ │ ├── publication │ │ │ │ │ ├── PublishProjectSuccessPayload.java │ │ │ │ │ ├── SysONLibraryDependencyCollector.java │ │ │ │ │ ├── SysONLibraryPublicationHandler.java │ │ │ │ │ ├── SysONLibraryPublicationListener.java │ │ │ │ │ ├── SysONPublishedLibrarySemanticDataCreationRequested.java │ │ │ │ │ └── api │ │ │ │ │ │ └── ISysONLibraryDependencyCollector.java │ │ │ │ │ ├── services │ │ │ │ │ ├── CoreFeaturesSwitch.java │ │ │ │ │ ├── DetailsViewService.java │ │ │ │ │ ├── EStructuralFeatureLabelProvider.java │ │ │ │ │ ├── GetChildCreationSwitch.java │ │ │ │ │ ├── ImagePathService.java │ │ │ │ │ ├── SysMLv2EditService.java │ │ │ │ │ ├── SysMLv2EditServiceExtraServices.java │ │ │ │ │ ├── SysMLv2LabelService.java │ │ │ │ │ ├── SysONIdentityService.java │ │ │ │ │ ├── SysONReadOnlyObjectPredicateDelegate.java │ │ │ │ │ └── SysONResourceService.java │ │ │ │ │ ├── sysmlv2 │ │ │ │ │ ├── SysMLv2EditingContextActionHandler.java │ │ │ │ │ ├── SysMLv2EditingContextActionProvider.java │ │ │ │ │ ├── SysMLv2ProjectTemplatesInitializer.java │ │ │ │ │ ├── SysMLv2ProjectTemplatesProvider.java │ │ │ │ │ ├── SysMLv2StereotypeHandler.java │ │ │ │ │ ├── SysMLv2StereotypeProvider.java │ │ │ │ │ ├── SysONDefaultResourceProvider.java │ │ │ │ │ └── api │ │ │ │ │ │ └── IDefaultSysMLv2ResourceProvider.java │ │ │ │ │ └── update │ │ │ │ │ └── SysONEditingContextSnapshotService.java │ │ │ └── resources │ │ │ │ ├── images │ │ │ │ ├── Studio-Template.png │ │ │ │ ├── omnibox │ │ │ │ │ ├── import.svg │ │ │ │ │ └── publish.svg │ │ │ │ └── sysmlv2-logo.png │ │ │ │ ├── kerml.libraries │ │ │ │ ├── Base.json │ │ │ │ ├── BaseFunctions.json │ │ │ │ ├── BooleanFunctions.json │ │ │ │ ├── Clocks.json │ │ │ │ ├── CollectionFunctions.json │ │ │ │ ├── Collections.json │ │ │ │ ├── ComplexFunctions.json │ │ │ │ ├── ControlFunctions.json │ │ │ │ ├── ControlPerformances.json │ │ │ │ ├── DataFunctions.json │ │ │ │ ├── FeatureReferencingPerformances.json │ │ │ │ ├── IntegerFunctions.json │ │ │ │ ├── KerML.json │ │ │ │ ├── Links.json │ │ │ │ ├── Metaobjects.json │ │ │ │ ├── NaturalFunctions.json │ │ │ │ ├── NumericalFunctions.json │ │ │ │ ├── Objects.json │ │ │ │ ├── Observation.json │ │ │ │ ├── OccurrenceFunctions.json │ │ │ │ ├── Occurrences.json │ │ │ │ ├── Performances.json │ │ │ │ ├── RationalFunctions.json │ │ │ │ ├── RealFunctions.json │ │ │ │ ├── ScalarFunctions.json │ │ │ │ ├── ScalarValues.json │ │ │ │ ├── SequenceFunctions.json │ │ │ │ ├── SpatialFrames.json │ │ │ │ ├── StatePerformances.json │ │ │ │ ├── StringFunctions.json │ │ │ │ ├── Transfers.json │ │ │ │ ├── TransitionPerformances.json │ │ │ │ ├── TrigFunctions.json │ │ │ │ ├── Triggers.json │ │ │ │ ├── VectorFunctions.json │ │ │ │ └── VectorValues.json │ │ │ │ ├── migration │ │ │ │ └── stdlib_oldId_to_elementId.txt │ │ │ │ ├── schema │ │ │ │ └── sysmlcustomnodes.graphqls │ │ │ │ ├── sysml.libraries │ │ │ │ ├── Actions.json │ │ │ │ ├── Allocations.json │ │ │ │ ├── AnalysisCases.json │ │ │ │ ├── AnalysisTooling.json │ │ │ │ ├── Attributes.json │ │ │ │ ├── Calculations.json │ │ │ │ ├── Cases.json │ │ │ │ ├── CausationConnections.json │ │ │ │ ├── CauseAndEffect.json │ │ │ │ ├── Connections.json │ │ │ │ ├── Constraints.json │ │ │ │ ├── DerivationConnections.json │ │ │ │ ├── Flows.json │ │ │ │ ├── ISQ.json │ │ │ │ ├── ISQAcoustics.json │ │ │ │ ├── ISQAtomicNuclear.json │ │ │ │ ├── ISQBase.json │ │ │ │ ├── ISQCharacteristicNumbers.json │ │ │ │ ├── ISQChemistryMolecular.json │ │ │ │ ├── ISQCondensedMatter.json │ │ │ │ ├── ISQElectromagnetism.json │ │ │ │ ├── ISQInformation.json │ │ │ │ ├── ISQLight.json │ │ │ │ ├── ISQMechanics.json │ │ │ │ ├── ISQSpaceTime.json │ │ │ │ ├── ISQThermodynamics.json │ │ │ │ ├── ImageMetadata.json │ │ │ │ ├── Interfaces.json │ │ │ │ ├── Items.json │ │ │ │ ├── MeasurementRefCalculations.json │ │ │ │ ├── MeasurementReferences.json │ │ │ │ ├── Metadata.json │ │ │ │ ├── ModelingMetadata.json │ │ │ │ ├── ParametersOfInterestMetadata.json │ │ │ │ ├── Parts.json │ │ │ │ ├── Ports.json │ │ │ │ ├── Quantities.json │ │ │ │ ├── QuantityCalculations.json │ │ │ │ ├── RequirementDerivation.json │ │ │ │ ├── Requirements.json │ │ │ │ ├── RiskMetadata.json │ │ │ │ ├── SI.json │ │ │ │ ├── SIPrefixes.json │ │ │ │ ├── SampledFunctions.json │ │ │ │ ├── ShapeItems.json │ │ │ │ ├── SpatialItems.json │ │ │ │ ├── StandardViewDefinitions.json │ │ │ │ ├── StateSpaceRepresentation.json │ │ │ │ ├── States.json │ │ │ │ ├── SysML.json │ │ │ │ ├── TensorCalculations.json │ │ │ │ ├── Time.json │ │ │ │ ├── TradeStudies.json │ │ │ │ ├── USCustomaryUnits.json │ │ │ │ ├── UseCases.json │ │ │ │ ├── VectorCalculations.json │ │ │ │ ├── VerificationCases.json │ │ │ │ └── Views.json │ │ │ │ └── templates │ │ │ │ ├── Batmobile.json │ │ │ │ └── Batmobile.sysml │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── application │ │ │ ├── configuration │ │ │ ├── ArchitectureConstants.java │ │ │ ├── CodingRulesTests.java │ │ │ └── SysMLEditingContextProcessorTest.java │ │ │ └── services │ │ │ ├── DetailsViewServiceTest.java │ │ │ ├── GetChildCreationSwitchTest.java │ │ │ ├── SysMLv2EditServiceTests.java │ │ │ ├── SysONReadOnlyObjectPredicateDelegateTests.java │ │ │ └── SysONResourceServiceTests.java │ ├── syson-application │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.springframework.ide.eclipse.boot.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── SysONApplication.java │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ ├── AbstractIntegrationTests.java │ │ │ │ ├── IntegrationTestConfiguration.java │ │ │ │ ├── JavaServiceIsCalledChecker.java │ │ │ │ ├── JavaServiceTests.java │ │ │ │ ├── OnNoDefaultLibrariesTests.java │ │ │ │ ├── SysONNoDefaultLibrariesTestConfiguration.java │ │ │ │ ├── SysONNoLoadDefaultLibrariesOnApplicationStartTestConfiguration.java │ │ │ │ ├── SysONTestsProperties.java │ │ │ │ ├── application │ │ │ │ ├── controller │ │ │ │ │ ├── editingContext │ │ │ │ │ │ └── checkers │ │ │ │ │ │ │ ├── CheckElementInParent.java │ │ │ │ │ │ │ ├── ISemanticChecker.java │ │ │ │ │ │ │ └── SemanticCheckerService.java │ │ │ │ │ ├── explorer │ │ │ │ │ │ ├── testers │ │ │ │ │ │ │ ├── ExpandAllTreeItemTester.java │ │ │ │ │ │ │ ├── TreeItemContextMenuTester.java │ │ │ │ │ │ │ └── TreePathTester.java │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── ObjectDuplicationTests.java │ │ │ │ │ │ │ └── SysONExplorerTests.java │ │ │ │ │ ├── objects │ │ │ │ │ │ └── ObjectCreationTests.java │ │ │ │ │ └── relatedelements │ │ │ │ │ │ └── view │ │ │ │ │ │ └── RelatedElementsViewTests.java │ │ │ │ ├── controllers │ │ │ │ │ ├── details │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── DetailsViewControllerIntegrationTests.java │ │ │ │ │ ├── diagrams │ │ │ │ │ │ ├── EditSysMLImportedPackageNodeAppearanceControllerTests.java │ │ │ │ │ │ ├── EditSysMLNoteNodeAppearanceControllerTests.java │ │ │ │ │ │ ├── EditSysMLPackageNodeAppearanceControllerTests.java │ │ │ │ │ │ ├── EditSysMLViewFrameNodeAppearanceControllerTests.java │ │ │ │ │ │ ├── checkers │ │ │ │ │ │ │ ├── BindingConnectorAsUsageChecker.java │ │ │ │ │ │ │ ├── CheckBorderNode.java │ │ │ │ │ │ │ ├── CheckChildNode.java │ │ │ │ │ │ │ ├── CheckDiagramElementCount.java │ │ │ │ │ │ │ ├── CheckNodeInCompartment.java │ │ │ │ │ │ │ ├── CheckNodeOnDiagram.java │ │ │ │ │ │ │ ├── DiagramCheckerService.java │ │ │ │ │ │ │ └── IDiagramChecker.java │ │ │ │ │ │ ├── compartments │ │ │ │ │ │ │ ├── ActionFlowTests.java │ │ │ │ │ │ │ ├── ActionTransitionUsagesTests.java │ │ │ │ │ │ │ └── StartActionTests.java │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── GVActionDefinitionParameterTests.java │ │ │ │ │ │ │ │ ├── GVAddExistingElementsTests.java │ │ │ │ │ │ │ │ ├── GVAddNewExhibitStateWithReferencedStateFromPartsTests.java │ │ │ │ │ │ │ │ ├── GVAddNewFeatureTypingFromPartUsageTests.java │ │ │ │ │ │ │ │ ├── GVAddNewSubsettingFromPartUsageTests.java │ │ │ │ │ │ │ │ ├── GVAnnotatingElementTests.java │ │ │ │ │ │ │ │ ├── GVBindingConnectorAsUsageTests.java │ │ │ │ │ │ │ │ ├── GVBorderNodePortCreationTests.java │ │ │ │ │ │ │ │ ├── GVControlNodeTests.java │ │ │ │ │ │ │ │ ├── GVDirectEditTests.java │ │ │ │ │ │ │ │ ├── GVDropFromDiagramTests.java │ │ │ │ │ │ │ │ ├── GVDropFromExplorerTests.java │ │ │ │ │ │ │ │ ├── GVEdgeCreationTests.java │ │ │ │ │ │ │ │ ├── GVEdgeItemUsageTests.java │ │ │ │ │ │ │ │ ├── GVEdgeOnEdgeTests.java │ │ │ │ │ │ │ │ ├── GVEdgePortUsageTests.java │ │ │ │ │ │ │ │ ├── GVFlowUsageTests.java │ │ │ │ │ │ │ │ ├── GVIncludeUseCaseUsageTests.java │ │ │ │ │ │ │ │ ├── GVInheritedPortTests.java │ │ │ │ │ │ │ │ ├── GVItemAndAttributeExpressionTests.java │ │ │ │ │ │ │ │ ├── GVManageVisibilityTests.java │ │ │ │ │ │ │ │ ├── GVNestedAndTreeVisibilityTests.java │ │ │ │ │ │ │ │ ├── GVPackageTests.java │ │ │ │ │ │ │ │ ├── GVRelationshipTests.java │ │ │ │ │ │ │ │ ├── GVStateTransitionUsageTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeActionFlowCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeAnalysisCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeExtensionCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeInterconnectionCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeRequirementCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeStateTransitionCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeStructureCreationTests.java │ │ │ │ │ │ │ │ ├── GVSubNodeTemporalCreationTests.java │ │ │ │ │ │ │ │ ├── GVTopNodeCreationTests.java │ │ │ │ │ │ │ │ ├── GVUndoTests.java │ │ │ │ │ │ │ │ ├── GVViewAsOnNodeTests.java │ │ │ │ │ │ │ │ ├── GVViewUsageExposedElementsTests.java │ │ │ │ │ │ │ │ └── GVViewUsageTests.java │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ ├── CreateRequirementMutationRunner.java │ │ │ │ │ │ │ ├── EditSysMLImportedPackageNodeAppearanceMutationRunner.java │ │ │ │ │ │ │ ├── EditSysMLNoteNodeAppearanceMutationRunner.java │ │ │ │ │ │ │ ├── EditSysMLPackageNodeAppearanceMutationRunner.java │ │ │ │ │ │ │ ├── EditSysMLViewFrameNodeAppearanceMutationRunner.java │ │ │ │ │ │ │ ├── ExposeRequirementsMutationRunner.java │ │ │ │ │ │ │ └── ShowDiagramsInheritedMembersMutationRunner.java │ │ │ │ │ │ ├── interconnection │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ ├── IVAddNewBindingConnectorAsUsageFromPartUsageTests.java │ │ │ │ │ │ │ │ ├── IVAddNewFlowConnectionFromPartUsageTests.java │ │ │ │ │ │ │ │ ├── IVAddNewInterfaceFromPartUsageTests.java │ │ │ │ │ │ │ │ ├── IVFlowFromPartUsageTests.java │ │ │ │ │ │ │ │ └── IVInterconnectionCompartmentToolsTests.java │ │ │ │ │ │ └── testers │ │ │ │ │ │ │ ├── DeleteToolRunner.java │ │ │ │ │ │ │ ├── DeleteToolTester.java │ │ │ │ │ │ │ ├── DirectEditInitialLabelTester.java │ │ │ │ │ │ │ ├── DirectEditTester.java │ │ │ │ │ │ │ ├── DropFromExplorerTester.java │ │ │ │ │ │ │ ├── EdgeCreationTester.java │ │ │ │ │ │ │ ├── EdgeReconnectionTester.java │ │ │ │ │ │ │ └── ToolTester.java │ │ │ │ │ ├── explorer │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── ExplorerViewControllerIntegrationTests.java │ │ │ │ │ ├── objects │ │ │ │ │ │ └── ObjectRestControllerIntegrationTests.java │ │ │ │ │ ├── omnibox │ │ │ │ │ │ └── OmniboxControllerIntegrationTests.java │ │ │ │ │ ├── projects │ │ │ │ │ │ └── ProjectDataVersioningRestControllerIntegrationTests.java │ │ │ │ │ ├── rest │ │ │ │ │ │ └── RestControllerIntegrationTests.java │ │ │ │ │ ├── tables │ │ │ │ │ │ └── RequirementsTableControllerIntegrationTests.java │ │ │ │ │ ├── templates │ │ │ │ │ │ └── TemplatesControllerIntegrationTests.java │ │ │ │ │ └── utils │ │ │ │ │ │ └── TestNameGenerator.java │ │ │ │ ├── data │ │ │ │ │ ├── ActionFlowCompartmentTestProjectData.java │ │ │ │ │ ├── ActionTransitionUsagesProjectData.java │ │ │ │ │ ├── AllCustomNodesProjectData.java │ │ │ │ │ ├── AllDiagramsBeforeMergeOfAllDiagramDescriptionsTestProjectData.java │ │ │ │ │ ├── DiagramOnViewUsageMigrationParticipantTestProjectData.java │ │ │ │ │ ├── ExplorerViewDirectEditTestProjectData.java │ │ │ │ │ ├── GVSimpleNestedAndTreeElementsTestProjectData.java │ │ │ │ │ ├── GeneraViewRelationshipTestProjectData.java │ │ │ │ │ ├── GeneralViewAddExistingElementsTestProjectData.java │ │ │ │ │ ├── GeneralViewBindingConnectorProjectData.java │ │ │ │ │ ├── GeneralViewDirectEditTestProjectData.java │ │ │ │ │ ├── GeneralViewEdgeOnEdgeTestProjectData.java │ │ │ │ │ ├── GeneralViewEmptyTestProjectData.java │ │ │ │ │ ├── GeneralViewFlowConnectionItemUsagesProjectData.java │ │ │ │ │ ├── GeneralViewInheritedPortTestProjectData.java │ │ │ │ │ ├── GeneralViewItemAndAttributeProjectData.java │ │ │ │ │ ├── GeneralViewManageVisibilityTestsProjectData.java │ │ │ │ │ ├── GeneralViewPortTestProjectData.java │ │ │ │ │ ├── GeneralViewStateTransitionUsageProjectData.java │ │ │ │ │ ├── GeneralViewViewTestProjectData.java │ │ │ │ │ ├── GeneralViewWithTopNodesTestProjectData.java │ │ │ │ │ ├── IncludeUseCaseUsageProjectData.java │ │ │ │ │ ├── InterconnectionViewEmptyTestProjectData.java │ │ │ │ │ ├── InterconnectionViewFlowConnectionTestProjectData.java │ │ │ │ │ ├── InterconnectionViewWithTopNodesTestProjectData.java │ │ │ │ │ ├── NewObjectAsTextProjectData.java │ │ │ │ │ ├── ProjectWithLibraryDependencyContainingCommentAndLibraryPackageTestProjectData.java │ │ │ │ │ ├── ProjectWithLibraryDependencyContainingLibraryPackageTestProjectData.java │ │ │ │ │ ├── ProjectWithLibraryDependencyContainingPackageAndLibraryPackageTestProjectData.java │ │ │ │ │ ├── ProjectWithUnusedBatmobileLibraryDependencyTestProjectData.java │ │ │ │ │ ├── ProjectWithUsedBatmobileLibraryDependencyTestProjectData.java │ │ │ │ │ ├── RequirementsTableTestProjectData.java │ │ │ │ │ ├── SimpleProjectElementsTestProjectData.java │ │ │ │ │ ├── SysonStudioTestProjectData.java │ │ │ │ │ ├── ViewAsOnNodeTestProjectData.java │ │ │ │ │ └── ViewUsageExposedElementsTestProjectData.java │ │ │ │ ├── export │ │ │ │ │ ├── ImportExportTests.java │ │ │ │ │ └── checker │ │ │ │ │ │ └── SysmlImportExportChecker.java │ │ │ │ ├── imports │ │ │ │ │ ├── ImportSysMLModelTest.java │ │ │ │ │ ├── MutationInsertTextualSysMLv2DataFetcherTests.java │ │ │ │ │ ├── MutationInsertTextualSysMLv2DataRunner.java │ │ │ │ │ └── SysMLv2SemanticImportChecker.java │ │ │ │ ├── libraries │ │ │ │ │ ├── SysONLibraryImportTestServer.java │ │ │ │ │ ├── imports │ │ │ │ │ │ ├── SysONLibraryImportByCopyTests.java │ │ │ │ │ │ ├── SysONLibraryImportByReferenceTests.java │ │ │ │ │ │ └── SysONLibraryImportTests.java │ │ │ │ │ ├── publication │ │ │ │ │ │ └── SysONLibraryPublicationTests.java │ │ │ │ │ └── update │ │ │ │ │ │ ├── SysONEditingContextSnapshotServiceTests.java │ │ │ │ │ │ └── SysONLibraryUpdateTests.java │ │ │ │ ├── migration │ │ │ │ │ ├── AllDiagramsBeforeMergeOfAllDiagramDescriptionsMigrationParticipantTest.java │ │ │ │ │ ├── AnnotationMigrationParticipantTest.java │ │ │ │ │ ├── ConnectorAsUsageMigrationParticipantTest.java │ │ │ │ │ ├── DiagramOnViewUsageMigrationParticipantTest.java │ │ │ │ │ └── StandardLibrariesIdsMigrationParticipantTest.java │ │ │ │ └── validation │ │ │ │ │ └── ValidationRulesTests.java │ │ │ │ ├── metamodel │ │ │ │ └── helper │ │ │ │ │ ├── ImplicitSpecializationsTests.java │ │ │ │ │ └── LibraryNamespaceProviderTests.java │ │ │ │ ├── services │ │ │ │ ├── SemanticRunnableFactory.java │ │ │ │ └── diagrams │ │ │ │ │ ├── DiagramComparator.java │ │ │ │ │ ├── DiagramDescriptionIdProvider.java │ │ │ │ │ ├── GivenDiagramDescription.java │ │ │ │ │ ├── GivenDiagramReference.java │ │ │ │ │ ├── GivenDiagramSubscription.java │ │ │ │ │ ├── NodeCreationTestsService.java │ │ │ │ │ └── api │ │ │ │ │ ├── IGivenDiagramDescription.java │ │ │ │ │ ├── IGivenDiagramReference.java │ │ │ │ │ └── IGivenDiagramSubscription.java │ │ │ │ ├── sysml │ │ │ │ └── impl │ │ │ │ │ └── ActionDefinitionImplTest.java │ │ │ │ └── tree │ │ │ │ └── explorer │ │ │ │ └── view │ │ │ │ └── handlers │ │ │ │ ├── DropTreeItemHandlerTest.java │ │ │ │ └── DuplicateTargetBrowserTreeDescriptionTest.java │ │ │ └── resources │ │ │ ├── package1.json │ │ │ ├── part_changes.json │ │ │ ├── part_relationships.json │ │ │ ├── scripts │ │ │ ├── cleanup.sql │ │ │ ├── database-content │ │ │ │ ├── ActionFlowCompartmentTest.sql │ │ │ │ ├── ActionTransitionUsages.sql │ │ │ │ ├── AllCustomNodes.sql │ │ │ │ ├── AllDiagrams-Before-MergeOfAllDiagramDescriptions.sql │ │ │ │ ├── ConnectorAsUsageSourceAndTargetMigrationParticipant-Test.sql │ │ │ │ ├── DiagramOnViewUsage-MigrationParticipant-Test.sql │ │ │ │ ├── ExplorerView-DirectEdit.sql │ │ │ │ ├── GV-SimpleNestedAndTreeElements.sql │ │ │ │ ├── GeneralView-ActionTransitionUsages.sql │ │ │ │ ├── GeneralView-ActionUsage.sql │ │ │ │ ├── GeneralView-AddExistingElements.sql │ │ │ │ ├── GeneralView-BindingConnectorProject.sql │ │ │ │ ├── GeneralView-DirectEdit.sql │ │ │ │ ├── GeneralView-EdgeOnEdge.sql │ │ │ │ ├── GeneralView-Empty.sql │ │ │ │ ├── GeneralView-FlowConnectionItemUsages.sql │ │ │ │ ├── GeneralView-IncludeUseCaseUsage.sql │ │ │ │ ├── GeneralView-InheritedPort.sql │ │ │ │ ├── GeneralView-ItemAndAttributesModelTest.sql │ │ │ │ ├── GeneralView-ManageVisibility.sql │ │ │ │ ├── GeneralView-Port.sql │ │ │ │ ├── GeneralView-Relationship.sql │ │ │ │ ├── GeneralView-StateTransitionUsages.sql │ │ │ │ ├── GeneralView-View.sql │ │ │ │ ├── GeneralView-WithTopNodes.sql │ │ │ │ ├── InterconnectionView-Empty.sql │ │ │ │ ├── InterconnectionView-FlowConnectionTest.sql │ │ │ │ ├── InterconnectionView-WithTopNodes.sql │ │ │ │ ├── NewObjectAsTextProject.sql │ │ │ │ ├── RequirementsTable.sql │ │ │ │ ├── StandardLibrariesElementsIdsMigrationParticipant-Test.sql │ │ │ │ ├── SysMLv2-ProjectWithLibraryDependencyContainingCommentAndLibraryPackage.sql │ │ │ │ ├── SysMLv2-ProjectWithLibraryDependencyContainingLibraryPackage.sql │ │ │ │ ├── SysMLv2-ProjectWithLibraryDependencyContainingPackageAndLibraryPackage.sql │ │ │ │ ├── SysMLv2-ProjectWithUnusedBatmobileLibraryDependency.sql │ │ │ │ ├── SysMLv2-ProjectWithUsedBatmobileLibraryDependency.sql │ │ │ │ ├── SysMLv2-SimpleProject.sql │ │ │ │ ├── SysON-Studio.sql │ │ │ │ ├── ViewAs-On-Node.sql │ │ │ │ ├── ViewUsage-ExposedElements.sql │ │ │ │ ├── imported-project.sql │ │ │ │ ├── syson-test-database-annotation.sql │ │ │ │ └── syson-test-database-import.sql │ │ │ ├── dump-test-data.sh │ │ │ └── initialize-test-data.sh │ │ │ ├── simple_project.json │ │ │ ├── simple_project_changes.json │ │ │ ├── simple_project_roots.json │ │ │ └── spring.properties │ ├── syson-frontend │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── .gitkeep │ │ │ └── resources │ │ │ └── .gitkeep │ ├── syson-sysml-export │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysml │ │ │ │ │ └── export │ │ │ │ │ ├── SysMLv2DocumentExporter.java │ │ │ │ │ └── SysMLv2EditingContextPersistenceFilter.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── sysml │ │ │ └── export │ │ │ ├── ArchitectureConstants.java │ │ │ └── CodingRulesTests.java │ ├── syson-sysml-import │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysml │ │ │ │ │ ├── ASTTransformer.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── SysmlToAst.java │ │ │ │ │ ├── datafetchers │ │ │ │ │ └── MutationInsertTextualSysMLv2DataFetcher.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── InsertTextualSysMLv2EventHandler.java │ │ │ │ │ └── InsertTextualSysMLv2Input.java │ │ │ │ │ ├── parser │ │ │ │ │ ├── AstTreeParser.java │ │ │ │ │ ├── ContainmentReferenceHandler.java │ │ │ │ │ ├── EAttributeHandler.java │ │ │ │ │ ├── NonContainmentReferenceHandler.java │ │ │ │ │ ├── ProxiedReference.java │ │ │ │ │ ├── ProxyResolver.java │ │ │ │ │ ├── ReferenceNodeTester.java │ │ │ │ │ ├── SysIDENonContainmentIncompatibilitiesHandler.java │ │ │ │ │ └── translation │ │ │ │ │ │ ├── EAttributeTranslator.java │ │ │ │ │ │ ├── EClassifierTranslator.java │ │ │ │ │ │ └── EReferenceComputer.java │ │ │ │ │ ├── upload │ │ │ │ │ └── SysMLExternalResourceLoaderService.java │ │ │ │ │ └── utils │ │ │ │ │ ├── LogNameProvider.java │ │ │ │ │ └── MessageReporter.java │ │ │ └── resources │ │ │ │ ├── messages_en.properties │ │ │ │ ├── messages_fr.properties │ │ │ │ ├── schema │ │ │ │ └── syson-import.graphqls │ │ │ │ └── syside-cli.js │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── sysml │ │ │ │ ├── ASTTransformerTest.java │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ ├── CodingRulesTests.java │ │ │ │ ├── ContainmentReferenceHandlerTest.java │ │ │ │ ├── NonContainmentReferenceHandlerTest.java │ │ │ │ └── SysMLExternalResourceLoaderServiceTests.java │ │ │ └── resources │ │ │ └── ASTTransformerTest │ │ │ ├── convertAliasTest │ │ │ ├── alias.ast.json │ │ │ └── alias.sysml │ │ │ ├── convertAllocationTest │ │ │ ├── allocation.ast.json │ │ │ └── allocation.sysml │ │ │ ├── convertAssignmentTest │ │ │ ├── assignment1.ast.json │ │ │ ├── assignment1.sysml │ │ │ ├── assignment2.ast.json │ │ │ ├── assignment2.sysml │ │ │ ├── assignment3.ast.json │ │ │ └── assignment3.sysml │ │ │ ├── convertBooleanTest │ │ │ ├── boolean.ast.json │ │ │ └── boolean.sysml │ │ │ ├── convertFeatureTypingTest │ │ │ ├── featureTyping.ast.json │ │ │ └── featureTyping.sysml │ │ │ ├── convertImportTest │ │ │ ├── import.ast.json │ │ │ └── import.sysml │ │ │ ├── convertInheritanceTest │ │ │ ├── inheritance.ast.json │ │ │ └── inheritance.sysml │ │ │ ├── convertNamespaceImportTest │ │ │ ├── model.ast.json │ │ │ ├── model.sysml │ │ │ ├── namespace.ast.json │ │ │ └── namespace.sysml │ │ │ ├── convertNamespaceImportValueTest │ │ │ ├── model.ast.json │ │ │ ├── model.sysml │ │ │ ├── namespace.ast.json │ │ │ └── namespace.sysml │ │ │ ├── convertProjectWithErrors │ │ │ ├── proxyResolutionError.ast.json │ │ │ └── proxyResolutionError.sysml │ │ │ ├── convertRedefinesTest │ │ │ ├── redefines.ast.json │ │ │ └── redefines.sysml │ │ │ ├── convertSubclassificationTest │ │ │ ├── subclassification.ast.json │ │ │ └── subclassification.sysml │ │ │ ├── convertVisibilityTest │ │ │ ├── visibility.ast.json │ │ │ └── visibility.sysml │ │ │ └── isUniqueFeature │ │ │ ├── model.ast.json │ │ │ └── model.sysml │ └── syson-sysml-validation │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.springframework.ide.eclipse.boot.prefs │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── sysml │ │ │ │ └── validation │ │ │ │ ├── SysMLv2ValidationRules.java │ │ │ │ ├── SysMLv2ValidationService.java │ │ │ │ ├── SysMLv2Validator.java │ │ │ │ ├── SysMLv2ValidatorConfiguration.java │ │ │ │ ├── SysONQueryServices.java │ │ │ │ └── ValidationRule.java │ │ └── resources │ │ │ └── .gitkeep │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── syson │ │ └── sysml │ │ └── validation │ │ ├── ArchitectureConstants.java │ │ └── CodingRulesTests.java ├── metamodel │ ├── pom.xml │ ├── syson-siriusweb-customnodes-metamodel-edit │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysmlcustomnodes │ │ │ │ │ └── provider │ │ │ │ │ ├── SysMLCustomNodesEditPlugin.java │ │ │ │ │ ├── SysMLCustomnodesItemProviderAdapterFactory.java │ │ │ │ │ ├── SysMLImportedPackageNodeStyleDescriptionItemProvider.java │ │ │ │ │ ├── SysMLNoteNodeStyleDescriptionItemProvider.java │ │ │ │ │ ├── SysMLPackageNodeStyleDescriptionItemProvider.java │ │ │ │ │ └── SysMLViewFrameNodeStyleDescriptionItemProvider.java │ │ │ └── resources │ │ │ │ ├── icons │ │ │ │ └── full │ │ │ │ │ ├── ctool16 │ │ │ │ │ ├── CreateConditionalNodeStyle_style_SysMLPackageNodeStyleDescription.gif │ │ │ │ │ └── CreateNodeDescription_style_SysMLPackageNodeStyleDescription.gif │ │ │ │ │ └── obj16 │ │ │ │ │ ├── SysMLImportedPackageNodeStyleDescription.svg │ │ │ │ │ ├── SysMLNoteNodeStyleDescription.svg │ │ │ │ │ ├── SysMLPackageNodeStyleDescription.gif │ │ │ │ │ └── SysMLPackageNodeStyleDescription.svg │ │ │ │ └── plugin.properties │ │ │ └── test │ │ │ └── java │ │ │ └── .gitkeep │ ├── syson-siriusweb-customnodes-metamodel │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysmlcustomnodes │ │ │ │ │ ├── SysMLCustomnodesFactory.java │ │ │ │ │ ├── SysMLCustomnodesPackage.java │ │ │ │ │ ├── SysMLImportedPackageNodeStyleDescription.java │ │ │ │ │ ├── SysMLNoteNodeStyleDescription.java │ │ │ │ │ ├── SysMLPackageNodeStyleDescription.java │ │ │ │ │ ├── SysMLViewFrameNodeStyleDescription.java │ │ │ │ │ ├── impl │ │ │ │ │ ├── SysMLCustomnodesFactoryImpl.java │ │ │ │ │ ├── SysMLCustomnodesPackageImpl.java │ │ │ │ │ ├── SysMLImportedPackageNodeStyleDescriptionImpl.java │ │ │ │ │ ├── SysMLNoteNodeStyleDescriptionImpl.java │ │ │ │ │ ├── SysMLPackageNodeStyleDescriptionImpl.java │ │ │ │ │ └── SysMLViewFrameNodeStyleDescriptionImpl.java │ │ │ │ │ └── util │ │ │ │ │ ├── SysMLCustomnodesAdapterFactory.java │ │ │ │ │ └── SysMLCustomnodesSwitch.java │ │ │ └── resources │ │ │ │ └── model │ │ │ │ ├── sysml-customnodes.ecore │ │ │ │ └── sysml-customnodes.genmodel │ │ │ └── test │ │ │ └── java │ │ │ ├── .gitkeep │ │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── customnodes │ │ │ └── metamodel │ │ │ └── SysMLImportedPackageNodeStyleDescriptionTests.java │ ├── syson-sysml-metamodel-edit │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysml │ │ │ │ │ └── provider │ │ │ │ │ ├── AcceptActionUsageItemProvider.java │ │ │ │ │ ├── ActionDefinitionItemProvider.java │ │ │ │ │ ├── ActionUsageItemProvider.java │ │ │ │ │ ├── ActorMembershipItemProvider.java │ │ │ │ │ ├── AllocationDefinitionItemProvider.java │ │ │ │ │ ├── AllocationUsageItemProvider.java │ │ │ │ │ ├── AnalysisCaseDefinitionItemProvider.java │ │ │ │ │ ├── AnalysisCaseUsageItemProvider.java │ │ │ │ │ ├── AnnotatingElementItemProvider.java │ │ │ │ │ ├── AnnotationItemProvider.java │ │ │ │ │ ├── AssertConstraintUsageItemProvider.java │ │ │ │ │ ├── AssignmentActionUsageItemProvider.java │ │ │ │ │ ├── AssociationItemProvider.java │ │ │ │ │ ├── AssociationStructureItemProvider.java │ │ │ │ │ ├── AttributeDefinitionItemProvider.java │ │ │ │ │ ├── AttributeUsageItemProvider.java │ │ │ │ │ ├── BehaviorItemProvider.java │ │ │ │ │ ├── BindingConnectorAsUsageItemProvider.java │ │ │ │ │ ├── BindingConnectorItemProvider.java │ │ │ │ │ ├── BooleanExpressionItemProvider.java │ │ │ │ │ ├── CalculationDefinitionItemProvider.java │ │ │ │ │ ├── CalculationUsageItemProvider.java │ │ │ │ │ ├── CaseDefinitionItemProvider.java │ │ │ │ │ ├── CaseUsageItemProvider.java │ │ │ │ │ ├── ClassItemProvider.java │ │ │ │ │ ├── ClassifierItemProvider.java │ │ │ │ │ ├── CollectExpressionItemProvider.java │ │ │ │ │ ├── CommentItemProvider.java │ │ │ │ │ ├── ConcernDefinitionItemProvider.java │ │ │ │ │ ├── ConcernUsageItemProvider.java │ │ │ │ │ ├── ConjugatedPortDefinitionItemProvider.java │ │ │ │ │ ├── ConjugatedPortTypingItemProvider.java │ │ │ │ │ ├── ConjugationItemProvider.java │ │ │ │ │ ├── ConnectionDefinitionItemProvider.java │ │ │ │ │ ├── ConnectionUsageItemProvider.java │ │ │ │ │ ├── ConnectorAsUsageItemProvider.java │ │ │ │ │ ├── ConnectorItemProvider.java │ │ │ │ │ ├── ConstraintDefinitionItemProvider.java │ │ │ │ │ ├── ConstraintUsageItemProvider.java │ │ │ │ │ ├── ConstructorExpressionItemProvider.java │ │ │ │ │ ├── ControlNodeItemProvider.java │ │ │ │ │ ├── CrossSubsettingItemProvider.java │ │ │ │ │ ├── DataTypeItemProvider.java │ │ │ │ │ ├── DecisionNodeItemProvider.java │ │ │ │ │ ├── DefinitionItemProvider.java │ │ │ │ │ ├── DependencyItemProvider.java │ │ │ │ │ ├── DifferencingItemProvider.java │ │ │ │ │ ├── DisjoiningItemProvider.java │ │ │ │ │ ├── DocumentationItemProvider.java │ │ │ │ │ ├── ElementFilterMembershipItemProvider.java │ │ │ │ │ ├── ElementItemProvider.java │ │ │ │ │ ├── EndFeatureMembershipItemProvider.java │ │ │ │ │ ├── EnumerationDefinitionItemProvider.java │ │ │ │ │ ├── EnumerationUsageItemProvider.java │ │ │ │ │ ├── EventOccurrenceUsageItemProvider.java │ │ │ │ │ ├── ExhibitStateUsageItemProvider.java │ │ │ │ │ ├── ExposeItemProvider.java │ │ │ │ │ ├── ExpressionItemProvider.java │ │ │ │ │ ├── FeatureChainExpressionItemProvider.java │ │ │ │ │ ├── FeatureChainingItemProvider.java │ │ │ │ │ ├── FeatureInvertingItemProvider.java │ │ │ │ │ ├── FeatureItemProvider.java │ │ │ │ │ ├── FeatureMembershipItemProvider.java │ │ │ │ │ ├── FeatureReferenceExpressionItemProvider.java │ │ │ │ │ ├── FeatureTypingItemProvider.java │ │ │ │ │ ├── FeatureValueItemProvider.java │ │ │ │ │ ├── FlowDefinitionItemProvider.java │ │ │ │ │ ├── FlowEndItemProvider.java │ │ │ │ │ ├── FlowItemProvider.java │ │ │ │ │ ├── FlowUsageItemProvider.java │ │ │ │ │ ├── ForLoopActionUsageItemProvider.java │ │ │ │ │ ├── ForkNodeItemProvider.java │ │ │ │ │ ├── FramedConcernMembershipItemProvider.java │ │ │ │ │ ├── FunctionItemProvider.java │ │ │ │ │ ├── IfActionUsageItemProvider.java │ │ │ │ │ ├── ImportItemProvider.java │ │ │ │ │ ├── IncludeUseCaseUsageItemProvider.java │ │ │ │ │ ├── IndexExpressionItemProvider.java │ │ │ │ │ ├── InstantiationExpressionItemProvider.java │ │ │ │ │ ├── InteractionItemProvider.java │ │ │ │ │ ├── InterfaceDefinitionItemProvider.java │ │ │ │ │ ├── InterfaceUsageItemProvider.java │ │ │ │ │ ├── IntersectingItemProvider.java │ │ │ │ │ ├── InvariantItemProvider.java │ │ │ │ │ ├── InvocationExpressionItemProvider.java │ │ │ │ │ ├── ItemDefinitionItemProvider.java │ │ │ │ │ ├── ItemUsageItemProvider.java │ │ │ │ │ ├── JoinNodeItemProvider.java │ │ │ │ │ ├── LibraryPackageItemProvider.java │ │ │ │ │ ├── LiteralBooleanItemProvider.java │ │ │ │ │ ├── LiteralExpressionItemProvider.java │ │ │ │ │ ├── LiteralInfinityItemProvider.java │ │ │ │ │ ├── LiteralIntegerItemProvider.java │ │ │ │ │ ├── LiteralRationalItemProvider.java │ │ │ │ │ ├── LiteralStringItemProvider.java │ │ │ │ │ ├── LoopActionUsageItemProvider.java │ │ │ │ │ ├── MembershipExposeItemProvider.java │ │ │ │ │ ├── MembershipImportItemProvider.java │ │ │ │ │ ├── MembershipItemProvider.java │ │ │ │ │ ├── MergeNodeItemProvider.java │ │ │ │ │ ├── MetaclassItemProvider.java │ │ │ │ │ ├── MetadataAccessExpressionItemProvider.java │ │ │ │ │ ├── MetadataDefinitionItemProvider.java │ │ │ │ │ ├── MetadataFeatureItemProvider.java │ │ │ │ │ ├── MetadataUsageItemProvider.java │ │ │ │ │ ├── MultiplicityItemProvider.java │ │ │ │ │ ├── MultiplicityRangeItemProvider.java │ │ │ │ │ ├── NamespaceExposeItemProvider.java │ │ │ │ │ ├── NamespaceImportItemProvider.java │ │ │ │ │ ├── NamespaceItemProvider.java │ │ │ │ │ ├── NullExpressionItemProvider.java │ │ │ │ │ ├── ObjectiveMembershipItemProvider.java │ │ │ │ │ ├── OccurrenceDefinitionItemProvider.java │ │ │ │ │ ├── OccurrenceUsageItemProvider.java │ │ │ │ │ ├── OperatorExpressionItemProvider.java │ │ │ │ │ ├── OwningMembershipItemProvider.java │ │ │ │ │ ├── PackageItemProvider.java │ │ │ │ │ ├── ParameterMembershipItemProvider.java │ │ │ │ │ ├── PartDefinitionItemProvider.java │ │ │ │ │ ├── PartUsageItemProvider.java │ │ │ │ │ ├── PayloadFeatureItemProvider.java │ │ │ │ │ ├── PerformActionUsageItemProvider.java │ │ │ │ │ ├── PortConjugationItemProvider.java │ │ │ │ │ ├── PortDefinitionItemProvider.java │ │ │ │ │ ├── PortUsageItemProvider.java │ │ │ │ │ ├── PredicateItemProvider.java │ │ │ │ │ ├── RedefinitionItemProvider.java │ │ │ │ │ ├── ReferenceSubsettingItemProvider.java │ │ │ │ │ ├── ReferenceUsageItemProvider.java │ │ │ │ │ ├── RelationshipItemProvider.java │ │ │ │ │ ├── RenderingDefinitionItemProvider.java │ │ │ │ │ ├── RenderingUsageItemProvider.java │ │ │ │ │ ├── RequirementConstraintMembershipItemProvider.java │ │ │ │ │ ├── RequirementDefinitionItemProvider.java │ │ │ │ │ ├── RequirementUsageItemProvider.java │ │ │ │ │ ├── RequirementVerificationMembershipItemProvider.java │ │ │ │ │ ├── ResultExpressionMembershipItemProvider.java │ │ │ │ │ ├── ReturnParameterMembershipItemProvider.java │ │ │ │ │ ├── SatisfyRequirementUsageItemProvider.java │ │ │ │ │ ├── SelectExpressionItemProvider.java │ │ │ │ │ ├── SendActionUsageItemProvider.java │ │ │ │ │ ├── SpecializationItemProvider.java │ │ │ │ │ ├── StakeholderMembershipItemProvider.java │ │ │ │ │ ├── StateDefinitionItemProvider.java │ │ │ │ │ ├── StateSubactionMembershipItemProvider.java │ │ │ │ │ ├── StateUsageItemProvider.java │ │ │ │ │ ├── StepItemProvider.java │ │ │ │ │ ├── StructureItemProvider.java │ │ │ │ │ ├── SubclassificationItemProvider.java │ │ │ │ │ ├── SubjectMembershipItemProvider.java │ │ │ │ │ ├── SubsettingItemProvider.java │ │ │ │ │ ├── SuccessionAsUsageItemProvider.java │ │ │ │ │ ├── SuccessionFlowItemProvider.java │ │ │ │ │ ├── SuccessionFlowUsageItemProvider.java │ │ │ │ │ ├── SuccessionItemProvider.java │ │ │ │ │ ├── SysmlEditPlugin.java │ │ │ │ │ ├── SysmlItemProviderAdapterFactory.java │ │ │ │ │ ├── TerminateActionUsageItemProvider.java │ │ │ │ │ ├── TextualRepresentationItemProvider.java │ │ │ │ │ ├── TransitionFeatureMembershipItemProvider.java │ │ │ │ │ ├── TransitionUsageItemProvider.java │ │ │ │ │ ├── TriggerInvocationExpressionItemProvider.java │ │ │ │ │ ├── TypeFeaturingItemProvider.java │ │ │ │ │ ├── TypeItemProvider.java │ │ │ │ │ ├── UnioningItemProvider.java │ │ │ │ │ ├── UsageItemProvider.java │ │ │ │ │ ├── UseCaseDefinitionItemProvider.java │ │ │ │ │ ├── UseCaseUsageItemProvider.java │ │ │ │ │ ├── VariantMembershipItemProvider.java │ │ │ │ │ ├── VerificationCaseDefinitionItemProvider.java │ │ │ │ │ ├── VerificationCaseUsageItemProvider.java │ │ │ │ │ ├── ViewDefinitionItemProvider.java │ │ │ │ │ ├── ViewRenderingMembershipItemProvider.java │ │ │ │ │ ├── ViewUsageItemProvider.java │ │ │ │ │ ├── ViewpointDefinitionItemProvider.java │ │ │ │ │ ├── ViewpointUsageItemProvider.java │ │ │ │ │ └── WhileLoopActionUsageItemProvider.java │ │ │ └── resources │ │ │ │ ├── icons │ │ │ │ └── full │ │ │ │ │ ├── obj16 │ │ │ │ │ ├── AcceptActionUsage.svg │ │ │ │ │ ├── ActionDefinition.svg │ │ │ │ │ ├── ActionUsage.svg │ │ │ │ │ ├── Actor.svg │ │ │ │ │ ├── ActorMembership.svg │ │ │ │ │ ├── AllocationDefinition.svg │ │ │ │ │ ├── AllocationUsage.svg │ │ │ │ │ ├── AnalysisCaseDefinition.svg │ │ │ │ │ ├── AnalysisCaseUsage.svg │ │ │ │ │ ├── AnnotatingElement.svg │ │ │ │ │ ├── Annotation.svg │ │ │ │ │ ├── AssertConstraintUsage.svg │ │ │ │ │ ├── AssignmentActionUsage.svg │ │ │ │ │ ├── Association.svg │ │ │ │ │ ├── AssociationStructure.svg │ │ │ │ │ ├── AttributeDefinition.svg │ │ │ │ │ ├── AttributeUsage.svg │ │ │ │ │ ├── Behavior.svg │ │ │ │ │ ├── BindingConnector.svg │ │ │ │ │ ├── BindingConnectorAsUsage.svg │ │ │ │ │ ├── BooleanExpression.svg │ │ │ │ │ ├── CalculationDefinition.svg │ │ │ │ │ ├── CalculationUsage.svg │ │ │ │ │ ├── CaseDefinition.svg │ │ │ │ │ ├── CaseUsage.svg │ │ │ │ │ ├── Class.svg │ │ │ │ │ ├── Classifier.svg │ │ │ │ │ ├── CollectExpression.svg │ │ │ │ │ ├── Comment.svg │ │ │ │ │ ├── ConcernDefinition.svg │ │ │ │ │ ├── ConcernUsage.svg │ │ │ │ │ ├── ConjugatedPortDefinition.svg │ │ │ │ │ ├── ConjugatedPortTyping.svg │ │ │ │ │ ├── Conjugation.svg │ │ │ │ │ ├── ConnectionDefinition.svg │ │ │ │ │ ├── ConnectionUsage.svg │ │ │ │ │ ├── Connector.svg │ │ │ │ │ ├── ConnectorDefinition.svg │ │ │ │ │ ├── ConnectorUsage.svg │ │ │ │ │ ├── ConstraintDefinition.svg │ │ │ │ │ ├── ConstraintUsage.svg │ │ │ │ │ ├── ConstructorExpression.svg │ │ │ │ │ ├── CrossSubsetting.svg │ │ │ │ │ ├── DataType.svg │ │ │ │ │ ├── DecisionNode.svg │ │ │ │ │ ├── Definition.svg │ │ │ │ │ ├── Dependency.svg │ │ │ │ │ ├── Differencing.svg │ │ │ │ │ ├── Disjoining.svg │ │ │ │ │ ├── Documentation.svg │ │ │ │ │ ├── ElementFilterMembership.svg │ │ │ │ │ ├── EndFeatureMembership.svg │ │ │ │ │ ├── EnumerationDefinition.svg │ │ │ │ │ ├── EnumerationUsage.svg │ │ │ │ │ ├── EventOccurrenceUsage.svg │ │ │ │ │ ├── ExhibitStateUsage.svg │ │ │ │ │ ├── Expression.svg │ │ │ │ │ ├── Feature.svg │ │ │ │ │ ├── FeatureChainExpression.svg │ │ │ │ │ ├── FeatureChaining.svg │ │ │ │ │ ├── FeatureInverting.svg │ │ │ │ │ ├── FeatureMembership.svg │ │ │ │ │ ├── FeatureReferenceExpression.svg │ │ │ │ │ ├── FeatureTyping.svg │ │ │ │ │ ├── FeatureValue.svg │ │ │ │ │ ├── Flow.svg │ │ │ │ │ ├── FlowDefinition.svg │ │ │ │ │ ├── FlowEnd.svg │ │ │ │ │ ├── FlowUsage.svg │ │ │ │ │ ├── ForLoopActionUsage.svg │ │ │ │ │ ├── ForkNode.svg │ │ │ │ │ ├── FramedConcernMembership.svg │ │ │ │ │ ├── Function.svg │ │ │ │ │ ├── IfActionUsage.svg │ │ │ │ │ ├── Import.svg │ │ │ │ │ ├── IncludeUseCaseUsage.svg │ │ │ │ │ ├── IndexExpression.svg │ │ │ │ │ ├── InstantiationExpression.svg │ │ │ │ │ ├── Interaction.svg │ │ │ │ │ ├── InterfaceDefinition.svg │ │ │ │ │ ├── InterfaceUsage.svg │ │ │ │ │ ├── Intersecting.svg │ │ │ │ │ ├── Invariant.svg │ │ │ │ │ ├── InvocationExpression.svg │ │ │ │ │ ├── ItemDefinition.svg │ │ │ │ │ ├── ItemDefinitionIn.svg │ │ │ │ │ ├── ItemDefinitionInout.svg │ │ │ │ │ ├── ItemDefinitionOut.svg │ │ │ │ │ ├── ItemUsage.svg │ │ │ │ │ ├── ItemUsageIn.svg │ │ │ │ │ ├── ItemUsageInout.svg │ │ │ │ │ ├── ItemUsageOut.svg │ │ │ │ │ ├── JoinNode.svg │ │ │ │ │ ├── LibraryPackage.svg │ │ │ │ │ ├── LiteralBoolean.svg │ │ │ │ │ ├── LiteralExpression.svg │ │ │ │ │ ├── LiteralInfinity.svg │ │ │ │ │ ├── LiteralInteger.svg │ │ │ │ │ ├── LiteralRational.svg │ │ │ │ │ ├── LiteralString.svg │ │ │ │ │ ├── Membership.svg │ │ │ │ │ ├── MembershipExpose.svg │ │ │ │ │ ├── MembershipImport.svg │ │ │ │ │ ├── MembershipImportRecursive.svg │ │ │ │ │ ├── MergeNode.svg │ │ │ │ │ ├── Metaclass.svg │ │ │ │ │ ├── MetadataAccessExpression.svg │ │ │ │ │ ├── MetadataDefinition.svg │ │ │ │ │ ├── MetadataFeature.svg │ │ │ │ │ ├── MetadataUsage.svg │ │ │ │ │ ├── Multiplicity.svg │ │ │ │ │ ├── MultiplicityRange.svg │ │ │ │ │ ├── Namespace.svg │ │ │ │ │ ├── NamespaceExpose.svg │ │ │ │ │ ├── NamespaceImport.svg │ │ │ │ │ ├── NamespaceImportRecursive.svg │ │ │ │ │ ├── NullExpression.svg │ │ │ │ │ ├── Objective.svg │ │ │ │ │ ├── ObjectiveMembership.svg │ │ │ │ │ ├── OccurrenceDefinition.svg │ │ │ │ │ ├── OccurrenceUsage.svg │ │ │ │ │ ├── OperatorExpression.svg │ │ │ │ │ ├── OwningMembership.svg │ │ │ │ │ ├── Package.svg │ │ │ │ │ ├── ParameterMembership.svg │ │ │ │ │ ├── PartDefinition.svg │ │ │ │ │ ├── PartUsage.svg │ │ │ │ │ ├── PayloadFeature.svg │ │ │ │ │ ├── PerformActionUsage.svg │ │ │ │ │ ├── PortConjugation.svg │ │ │ │ │ ├── PortDefinition.svg │ │ │ │ │ ├── PortDefinitionIn.svg │ │ │ │ │ ├── PortDefinitionInout.svg │ │ │ │ │ ├── PortDefinitionOut.svg │ │ │ │ │ ├── PortUsage.svg │ │ │ │ │ ├── PortUsageIn.svg │ │ │ │ │ ├── PortUsageInout.svg │ │ │ │ │ ├── PortUsageOut.svg │ │ │ │ │ ├── Predicate.svg │ │ │ │ │ ├── README.adoc │ │ │ │ │ ├── Redefinition.svg │ │ │ │ │ ├── ReferenceDefinition.svg │ │ │ │ │ ├── ReferenceSubsetting.svg │ │ │ │ │ ├── ReferenceUsage.svg │ │ │ │ │ ├── ReferenceUsageIn.svg │ │ │ │ │ ├── ReferenceUsageInout.svg │ │ │ │ │ ├── ReferenceUsageOut.svg │ │ │ │ │ ├── RenderingDefinition.svg │ │ │ │ │ ├── RenderingUsage.svg │ │ │ │ │ ├── RequirementConstraintMembership.svg │ │ │ │ │ ├── RequirementDefinition.svg │ │ │ │ │ ├── RequirementUsage.svg │ │ │ │ │ ├── RequirementVerificationMembership.svg │ │ │ │ │ ├── ResultExpressionMembership.svg │ │ │ │ │ ├── ReturnParameterMembership.svg │ │ │ │ │ ├── SatisfyRequirementUsage.svg │ │ │ │ │ ├── SelectExpression.svg │ │ │ │ │ ├── SendActionUsage.svg │ │ │ │ │ ├── Specialization.svg │ │ │ │ │ ├── StakeholderMembership.svg │ │ │ │ │ ├── StateDefinition.svg │ │ │ │ │ ├── StateSubactionMembership.svg │ │ │ │ │ ├── StateUsage.svg │ │ │ │ │ ├── Step.svg │ │ │ │ │ ├── Structure.svg │ │ │ │ │ ├── Subclassification.svg │ │ │ │ │ ├── Subject.svg │ │ │ │ │ ├── SubjectMembership.svg │ │ │ │ │ ├── Subsetting.svg │ │ │ │ │ ├── Succession.svg │ │ │ │ │ ├── SuccessionAsUsage.svg │ │ │ │ │ ├── SuccessionFlow.svg │ │ │ │ │ ├── SuccessionFlowUsage.svg │ │ │ │ │ ├── TerminateActionUsage.svg │ │ │ │ │ ├── TextualRepresentation.svg │ │ │ │ │ ├── TransitionFeatureMembership.svg │ │ │ │ │ ├── TransitionUsage.svg │ │ │ │ │ ├── TriggerInvocationExpression.svg │ │ │ │ │ ├── Type.svg │ │ │ │ │ ├── TypeFeaturing.svg │ │ │ │ │ ├── Unioning.svg │ │ │ │ │ ├── Usage.svg │ │ │ │ │ ├── UseCaseDefinition.svg │ │ │ │ │ ├── UseCaseUsage.svg │ │ │ │ │ ├── VariantMembership.svg │ │ │ │ │ ├── VerificationCaseDefinition.svg │ │ │ │ │ ├── VerificationCaseUsage.svg │ │ │ │ │ ├── ViewDefinition.svg │ │ │ │ │ ├── ViewRenderingMembership.svg │ │ │ │ │ ├── ViewUsage.svg │ │ │ │ │ ├── ViewpointDefinition.svg │ │ │ │ │ ├── ViewpointUsage.svg │ │ │ │ │ └── WhileLoopActionUsage.svg │ │ │ │ │ └── ovr16 │ │ │ │ │ ├── VisibilityKind_private.svg │ │ │ │ │ └── VisibilityKind_protected.svg │ │ │ │ └── plugin.properties │ │ │ └── test │ │ │ └── java │ │ │ └── .gitkeep │ └── syson-sysml-metamodel │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── sysml │ │ │ │ ├── AcceptActionUsage.java │ │ │ │ ├── ActionDefinition.java │ │ │ │ ├── ActionUsage.java │ │ │ │ ├── ActorMembership.java │ │ │ │ ├── AllocationDefinition.java │ │ │ │ ├── AllocationUsage.java │ │ │ │ ├── AnalysisCaseDefinition.java │ │ │ │ ├── AnalysisCaseUsage.java │ │ │ │ ├── AnnotatingElement.java │ │ │ │ ├── Annotation.java │ │ │ │ ├── AssertConstraintUsage.java │ │ │ │ ├── AssignmentActionUsage.java │ │ │ │ ├── Association.java │ │ │ │ ├── AssociationStructure.java │ │ │ │ ├── AttributeDefinition.java │ │ │ │ ├── AttributeUsage.java │ │ │ │ ├── Behavior.java │ │ │ │ ├── BindingConnector.java │ │ │ │ ├── BindingConnectorAsUsage.java │ │ │ │ ├── BooleanExpression.java │ │ │ │ ├── CalculationDefinition.java │ │ │ │ ├── CalculationUsage.java │ │ │ │ ├── CaseDefinition.java │ │ │ │ ├── CaseUsage.java │ │ │ │ ├── Class.java │ │ │ │ ├── Classifier.java │ │ │ │ ├── CollectExpression.java │ │ │ │ ├── Comment.java │ │ │ │ ├── ConcernDefinition.java │ │ │ │ ├── ConcernUsage.java │ │ │ │ ├── ConjugatedPortDefinition.java │ │ │ │ ├── ConjugatedPortTyping.java │ │ │ │ ├── Conjugation.java │ │ │ │ ├── ConnectionDefinition.java │ │ │ │ ├── ConnectionUsage.java │ │ │ │ ├── Connector.java │ │ │ │ ├── ConnectorAsUsage.java │ │ │ │ ├── ConstraintDefinition.java │ │ │ │ ├── ConstraintUsage.java │ │ │ │ ├── ConstructorExpression.java │ │ │ │ ├── ControlNode.java │ │ │ │ ├── CrossSubsetting.java │ │ │ │ ├── DataType.java │ │ │ │ ├── DecisionNode.java │ │ │ │ ├── Definition.java │ │ │ │ ├── Dependency.java │ │ │ │ ├── Differencing.java │ │ │ │ ├── Disjoining.java │ │ │ │ ├── Documentation.java │ │ │ │ ├── Element.java │ │ │ │ ├── ElementFilterMembership.java │ │ │ │ ├── EndFeatureMembership.java │ │ │ │ ├── EnumerationDefinition.java │ │ │ │ ├── EnumerationUsage.java │ │ │ │ ├── EventOccurrenceUsage.java │ │ │ │ ├── ExhibitStateUsage.java │ │ │ │ ├── Expose.java │ │ │ │ ├── Expression.java │ │ │ │ ├── Feature.java │ │ │ │ ├── FeatureChainExpression.java │ │ │ │ ├── FeatureChaining.java │ │ │ │ ├── FeatureDirectionKind.java │ │ │ │ ├── FeatureInverting.java │ │ │ │ ├── FeatureMembership.java │ │ │ │ ├── FeatureReferenceExpression.java │ │ │ │ ├── FeatureTyping.java │ │ │ │ ├── FeatureValue.java │ │ │ │ ├── Flow.java │ │ │ │ ├── FlowDefinition.java │ │ │ │ ├── FlowEnd.java │ │ │ │ ├── FlowUsage.java │ │ │ │ ├── ForLoopActionUsage.java │ │ │ │ ├── ForkNode.java │ │ │ │ ├── FramedConcernMembership.java │ │ │ │ ├── Function.java │ │ │ │ ├── IfActionUsage.java │ │ │ │ ├── Import.java │ │ │ │ ├── IncludeUseCaseUsage.java │ │ │ │ ├── IndexExpression.java │ │ │ │ ├── InstantiationExpression.java │ │ │ │ ├── Interaction.java │ │ │ │ ├── InterfaceDefinition.java │ │ │ │ ├── InterfaceUsage.java │ │ │ │ ├── Intersecting.java │ │ │ │ ├── Invariant.java │ │ │ │ ├── InvocationExpression.java │ │ │ │ ├── ItemDefinition.java │ │ │ │ ├── ItemUsage.java │ │ │ │ ├── JoinNode.java │ │ │ │ ├── LibraryPackage.java │ │ │ │ ├── LiteralBoolean.java │ │ │ │ ├── LiteralExpression.java │ │ │ │ ├── LiteralInfinity.java │ │ │ │ ├── LiteralInteger.java │ │ │ │ ├── LiteralRational.java │ │ │ │ ├── LiteralString.java │ │ │ │ ├── LoopActionUsage.java │ │ │ │ ├── Membership.java │ │ │ │ ├── MembershipExpose.java │ │ │ │ ├── MembershipImport.java │ │ │ │ ├── MergeNode.java │ │ │ │ ├── Metaclass.java │ │ │ │ ├── MetadataAccessExpression.java │ │ │ │ ├── MetadataDefinition.java │ │ │ │ ├── MetadataFeature.java │ │ │ │ ├── MetadataUsage.java │ │ │ │ ├── Multiplicity.java │ │ │ │ ├── MultiplicityRange.java │ │ │ │ ├── Namespace.java │ │ │ │ ├── NamespaceExpose.java │ │ │ │ ├── NamespaceImport.java │ │ │ │ ├── NullExpression.java │ │ │ │ ├── ObjectiveMembership.java │ │ │ │ ├── OccurrenceDefinition.java │ │ │ │ ├── OccurrenceUsage.java │ │ │ │ ├── OperatorExpression.java │ │ │ │ ├── OwningMembership.java │ │ │ │ ├── Package.java │ │ │ │ ├── ParameterMembership.java │ │ │ │ ├── PartDefinition.java │ │ │ │ ├── PartUsage.java │ │ │ │ ├── PayloadFeature.java │ │ │ │ ├── PerformActionUsage.java │ │ │ │ ├── PortConjugation.java │ │ │ │ ├── PortDefinition.java │ │ │ │ ├── PortUsage.java │ │ │ │ ├── PortionKind.java │ │ │ │ ├── Predicate.java │ │ │ │ ├── Redefinition.java │ │ │ │ ├── ReferenceSubsetting.java │ │ │ │ ├── ReferenceUsage.java │ │ │ │ ├── Relationship.java │ │ │ │ ├── RenderingDefinition.java │ │ │ │ ├── RenderingUsage.java │ │ │ │ ├── RequirementConstraintKind.java │ │ │ │ ├── RequirementConstraintMembership.java │ │ │ │ ├── RequirementDefinition.java │ │ │ │ ├── RequirementUsage.java │ │ │ │ ├── RequirementVerificationMembership.java │ │ │ │ ├── ResultExpressionMembership.java │ │ │ │ ├── ReturnParameterMembership.java │ │ │ │ ├── SatisfyRequirementUsage.java │ │ │ │ ├── SelectExpression.java │ │ │ │ ├── SendActionUsage.java │ │ │ │ ├── Specialization.java │ │ │ │ ├── StakeholderMembership.java │ │ │ │ ├── StateDefinition.java │ │ │ │ ├── StateSubactionKind.java │ │ │ │ ├── StateSubactionMembership.java │ │ │ │ ├── StateUsage.java │ │ │ │ ├── Step.java │ │ │ │ ├── Structure.java │ │ │ │ ├── Subclassification.java │ │ │ │ ├── SubjectMembership.java │ │ │ │ ├── Subsetting.java │ │ │ │ ├── Succession.java │ │ │ │ ├── SuccessionAsUsage.java │ │ │ │ ├── SuccessionFlow.java │ │ │ │ ├── SuccessionFlowUsage.java │ │ │ │ ├── SysmlFactory.java │ │ │ │ ├── SysmlPackage.java │ │ │ │ ├── TerminateActionUsage.java │ │ │ │ ├── TextualRepresentation.java │ │ │ │ ├── TransitionFeatureKind.java │ │ │ │ ├── TransitionFeatureMembership.java │ │ │ │ ├── TransitionUsage.java │ │ │ │ ├── TriggerInvocationExpression.java │ │ │ │ ├── TriggerKind.java │ │ │ │ ├── Type.java │ │ │ │ ├── TypeFeaturing.java │ │ │ │ ├── Unioning.java │ │ │ │ ├── Usage.java │ │ │ │ ├── UseCaseDefinition.java │ │ │ │ ├── UseCaseUsage.java │ │ │ │ ├── VariantMembership.java │ │ │ │ ├── VerificationCaseDefinition.java │ │ │ │ ├── VerificationCaseUsage.java │ │ │ │ ├── ViewDefinition.java │ │ │ │ ├── ViewRenderingMembership.java │ │ │ │ ├── ViewUsage.java │ │ │ │ ├── ViewpointDefinition.java │ │ │ │ ├── ViewpointUsage.java │ │ │ │ ├── VisibilityKind.java │ │ │ │ ├── WhileLoopActionUsage.java │ │ │ │ ├── helper │ │ │ │ ├── DeresolvingNamespaceProvider.java │ │ │ │ ├── EMFUtils.java │ │ │ │ ├── ImplicitSpecializationAccumulator.java │ │ │ │ ├── ImplicitSpecializationSwitch.java │ │ │ │ ├── LabelConstants.java │ │ │ │ ├── MembershipComputer.java │ │ │ │ ├── NameConflictingFilter.java │ │ │ │ └── NameHelper.java │ │ │ │ ├── impl │ │ │ │ ├── AcceptActionUsageImpl.java │ │ │ │ ├── ActionDefinitionImpl.java │ │ │ │ ├── ActionUsageImpl.java │ │ │ │ ├── ActorMembershipImpl.java │ │ │ │ ├── AllocationDefinitionImpl.java │ │ │ │ ├── AllocationUsageImpl.java │ │ │ │ ├── AnalysisCaseDefinitionImpl.java │ │ │ │ ├── AnalysisCaseUsageImpl.java │ │ │ │ ├── AnnotatingElementImpl.java │ │ │ │ ├── AnnotationImpl.java │ │ │ │ ├── AssertConstraintUsageImpl.java │ │ │ │ ├── AssignmentActionUsageImpl.java │ │ │ │ ├── AssociationImpl.java │ │ │ │ ├── AssociationStructureImpl.java │ │ │ │ ├── AttributeDefinitionImpl.java │ │ │ │ ├── AttributeUsageImpl.java │ │ │ │ ├── BehaviorImpl.java │ │ │ │ ├── BindingConnectorAsUsageImpl.java │ │ │ │ ├── BindingConnectorImpl.java │ │ │ │ ├── BooleanExpressionImpl.java │ │ │ │ ├── CalculationDefinitionImpl.java │ │ │ │ ├── CalculationUsageImpl.java │ │ │ │ ├── CaseDefinitionImpl.java │ │ │ │ ├── CaseUsageImpl.java │ │ │ │ ├── ClassImpl.java │ │ │ │ ├── ClassifierImpl.java │ │ │ │ ├── CollectExpressionImpl.java │ │ │ │ ├── CommentImpl.java │ │ │ │ ├── ConcernDefinitionImpl.java │ │ │ │ ├── ConcernUsageImpl.java │ │ │ │ ├── ConjugatedPortDefinitionImpl.java │ │ │ │ ├── ConjugatedPortTypingImpl.java │ │ │ │ ├── ConjugationImpl.java │ │ │ │ ├── ConnectionDefinitionImpl.java │ │ │ │ ├── ConnectionUsageImpl.java │ │ │ │ ├── ConnectorAsUsageImpl.java │ │ │ │ ├── ConnectorImpl.java │ │ │ │ ├── ConstraintDefinitionImpl.java │ │ │ │ ├── ConstraintUsageImpl.java │ │ │ │ ├── ConstructorExpressionImpl.java │ │ │ │ ├── ControlNodeImpl.java │ │ │ │ ├── CrossSubsettingImpl.java │ │ │ │ ├── DataTypeImpl.java │ │ │ │ ├── DecisionNodeImpl.java │ │ │ │ ├── DefinitionImpl.java │ │ │ │ ├── DependencyImpl.java │ │ │ │ ├── DifferencingImpl.java │ │ │ │ ├── DisjoiningImpl.java │ │ │ │ ├── DocumentationImpl.java │ │ │ │ ├── ElementFilterMembershipImpl.java │ │ │ │ ├── ElementImpl.java │ │ │ │ ├── EndFeatureMembershipImpl.java │ │ │ │ ├── EnumerationDefinitionImpl.java │ │ │ │ ├── EnumerationUsageImpl.java │ │ │ │ ├── EventOccurrenceUsageImpl.java │ │ │ │ ├── ExhibitStateUsageImpl.java │ │ │ │ ├── ExposeImpl.java │ │ │ │ ├── ExpressionImpl.java │ │ │ │ ├── FeatureChainExpressionImpl.java │ │ │ │ ├── FeatureChainingImpl.java │ │ │ │ ├── FeatureImpl.java │ │ │ │ ├── FeatureInvertingImpl.java │ │ │ │ ├── FeatureMembershipImpl.java │ │ │ │ ├── FeatureReferenceExpressionImpl.java │ │ │ │ ├── FeatureTypingImpl.java │ │ │ │ ├── FeatureValueImpl.java │ │ │ │ ├── FlowDefinitionImpl.java │ │ │ │ ├── FlowEndImpl.java │ │ │ │ ├── FlowImpl.java │ │ │ │ ├── FlowUsageImpl.java │ │ │ │ ├── ForLoopActionUsageImpl.java │ │ │ │ ├── ForkNodeImpl.java │ │ │ │ ├── FramedConcernMembershipImpl.java │ │ │ │ ├── FunctionImpl.java │ │ │ │ ├── IfActionUsageImpl.java │ │ │ │ ├── ImportImpl.java │ │ │ │ ├── IncludeUseCaseUsageImpl.java │ │ │ │ ├── IndexExpressionImpl.java │ │ │ │ ├── InstantiationExpressionImpl.java │ │ │ │ ├── InteractionImpl.java │ │ │ │ ├── InterfaceDefinitionImpl.java │ │ │ │ ├── InterfaceUsageImpl.java │ │ │ │ ├── IntersectingImpl.java │ │ │ │ ├── InvariantImpl.java │ │ │ │ ├── InvocationExpressionImpl.java │ │ │ │ ├── ItemDefinitionImpl.java │ │ │ │ ├── ItemUsageImpl.java │ │ │ │ ├── JoinNodeImpl.java │ │ │ │ ├── LibraryPackageImpl.java │ │ │ │ ├── LiteralBooleanImpl.java │ │ │ │ ├── LiteralExpressionImpl.java │ │ │ │ ├── LiteralInfinityImpl.java │ │ │ │ ├── LiteralIntegerImpl.java │ │ │ │ ├── LiteralRationalImpl.java │ │ │ │ ├── LiteralStringImpl.java │ │ │ │ ├── LoopActionUsageImpl.java │ │ │ │ ├── MembershipExposeImpl.java │ │ │ │ ├── MembershipImpl.java │ │ │ │ ├── MembershipImportImpl.java │ │ │ │ ├── MergeNodeImpl.java │ │ │ │ ├── MetaclassImpl.java │ │ │ │ ├── MetadataAccessExpressionImpl.java │ │ │ │ ├── MetadataDefinitionImpl.java │ │ │ │ ├── MetadataFeatureImpl.java │ │ │ │ ├── MetadataUsageImpl.java │ │ │ │ ├── MultiplicityImpl.java │ │ │ │ ├── MultiplicityRangeImpl.java │ │ │ │ ├── NamespaceExposeImpl.java │ │ │ │ ├── NamespaceImpl.java │ │ │ │ ├── NamespaceImportImpl.java │ │ │ │ ├── NullExpressionImpl.java │ │ │ │ ├── ObjectiveMembershipImpl.java │ │ │ │ ├── OccurrenceDefinitionImpl.java │ │ │ │ ├── OccurrenceUsageImpl.java │ │ │ │ ├── OperatorExpressionImpl.java │ │ │ │ ├── OwningMembershipImpl.java │ │ │ │ ├── PackageImpl.java │ │ │ │ ├── ParameterMembershipImpl.java │ │ │ │ ├── PartDefinitionImpl.java │ │ │ │ ├── PartUsageImpl.java │ │ │ │ ├── PayloadFeatureImpl.java │ │ │ │ ├── PerformActionUsageImpl.java │ │ │ │ ├── PortConjugationImpl.java │ │ │ │ ├── PortDefinitionImpl.java │ │ │ │ ├── PortUsageImpl.java │ │ │ │ ├── PredicateImpl.java │ │ │ │ ├── RedefinitionImpl.java │ │ │ │ ├── ReferenceSubsettingImpl.java │ │ │ │ ├── ReferenceUsageImpl.java │ │ │ │ ├── RelationshipImpl.java │ │ │ │ ├── RenderingDefinitionImpl.java │ │ │ │ ├── RenderingUsageImpl.java │ │ │ │ ├── RequirementConstraintMembershipImpl.java │ │ │ │ ├── RequirementDefinitionImpl.java │ │ │ │ ├── RequirementUsageImpl.java │ │ │ │ ├── RequirementVerificationMembershipImpl.java │ │ │ │ ├── ResultExpressionMembershipImpl.java │ │ │ │ ├── ReturnParameterMembershipImpl.java │ │ │ │ ├── SatisfyRequirementUsageImpl.java │ │ │ │ ├── SelectExpressionImpl.java │ │ │ │ ├── SendActionUsageImpl.java │ │ │ │ ├── SpecializationImpl.java │ │ │ │ ├── StakeholderMembershipImpl.java │ │ │ │ ├── StateDefinitionImpl.java │ │ │ │ ├── StateSubactionMembershipImpl.java │ │ │ │ ├── StateUsageImpl.java │ │ │ │ ├── StepImpl.java │ │ │ │ ├── StructureImpl.java │ │ │ │ ├── SubclassificationImpl.java │ │ │ │ ├── SubjectMembershipImpl.java │ │ │ │ ├── SubsettingImpl.java │ │ │ │ ├── SuccessionAsUsageImpl.java │ │ │ │ ├── SuccessionFlowImpl.java │ │ │ │ ├── SuccessionFlowUsageImpl.java │ │ │ │ ├── SuccessionImpl.java │ │ │ │ ├── SysmlFactoryImpl.java │ │ │ │ ├── SysmlPackageImpl.java │ │ │ │ ├── TerminateActionUsageImpl.java │ │ │ │ ├── TextualRepresentationImpl.java │ │ │ │ ├── TransitionFeatureMembershipImpl.java │ │ │ │ ├── TransitionUsageImpl.java │ │ │ │ ├── TriggerInvocationExpressionImpl.java │ │ │ │ ├── TypeFeaturingImpl.java │ │ │ │ ├── TypeImpl.java │ │ │ │ ├── UnioningImpl.java │ │ │ │ ├── UsageImpl.java │ │ │ │ ├── UseCaseDefinitionImpl.java │ │ │ │ ├── UseCaseUsageImpl.java │ │ │ │ ├── VariantMembershipImpl.java │ │ │ │ ├── VerificationCaseDefinitionImpl.java │ │ │ │ ├── VerificationCaseUsageImpl.java │ │ │ │ ├── ViewDefinitionImpl.java │ │ │ │ ├── ViewRenderingMembershipImpl.java │ │ │ │ ├── ViewUsageImpl.java │ │ │ │ ├── ViewpointDefinitionImpl.java │ │ │ │ ├── ViewpointUsageImpl.java │ │ │ │ └── WhileLoopActionUsageImpl.java │ │ │ │ ├── textual │ │ │ │ ├── SysMLElementSerializer.java │ │ │ │ └── utils │ │ │ │ │ ├── Appender.java │ │ │ │ │ ├── FileNameDeresolver.java │ │ │ │ │ ├── INameDeresolver.java │ │ │ │ │ ├── Severity.java │ │ │ │ │ ├── Status.java │ │ │ │ │ ├── SysMLKeywordSwitch.java │ │ │ │ │ └── SysMLRelationPredicates.java │ │ │ │ └── util │ │ │ │ ├── ElementUtil.java │ │ │ │ ├── ILibraryNamespaceProvider.java │ │ │ │ ├── LibraryNamespaceProvider.java │ │ │ │ ├── RedefinesGenerator.java │ │ │ │ ├── SysmlAdapterFactory.java │ │ │ │ ├── SysmlResourceFactoryImpl.java │ │ │ │ ├── SysmlResourceImpl.java │ │ │ │ ├── SysmlSwitch.java │ │ │ │ └── VirtualLinkAdapter.java │ │ └── resources │ │ │ └── model │ │ │ ├── sysml.ecore │ │ │ └── sysml.genmodel │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── syson │ │ └── sysml │ │ ├── helper │ │ └── NameHelperTest.java │ │ ├── impl │ │ ├── AnnotationImplTest.java │ │ ├── CaseUsageImplTest.java │ │ ├── CommentImplTest.java │ │ ├── ConjugatedPortDefinitionImplTest.java │ │ ├── ConjugationImplTest.java │ │ ├── ConnectionDefinitionImplTest.java │ │ ├── ConnectionUsageImplTest.java │ │ ├── ConnectorImplTest.java │ │ ├── ConstraintUsageImplTest.java │ │ ├── DependencyImplTest.java │ │ ├── DisjoiningImplTest.java │ │ ├── ElementTest.java │ │ ├── EventOccurrenceUsageImplTest.java │ │ ├── FeatureChainingImplTest.java │ │ ├── FeatureImplTest.java │ │ ├── FeatureInvertingImplTest.java │ │ ├── FeatureTest.java │ │ ├── FeatureTypingImplTest.java │ │ ├── IncludeUseCaseUsageImplTest.java │ │ ├── InterfaceDefinitionImplTest.java │ │ ├── IntersectingImplTest.java │ │ ├── MembershipImplTest.java │ │ ├── MembershipImportImplTest.java │ │ ├── MetadataUsageImplTest.java │ │ ├── NamespaceImplTest.java │ │ ├── NamespaceImportImplTest.java │ │ ├── PartDefinitionImplTest.java │ │ ├── PartUsageImplTest.java │ │ ├── PerformActionUsageImplTest.java │ │ ├── RequirementDefinitionImplTest.java │ │ ├── RequirementUsageImplTest.java │ │ ├── SpecializationImplTest.java │ │ ├── SuccessionAsUsageTest.java │ │ ├── TextualRepresentationImplTest.java │ │ ├── TypeFeaturingImplTest.java │ │ ├── TypeImplTest.java │ │ ├── UnioningImplTest.java │ │ ├── UsageImplTest.java │ │ └── VariantMembershipImplTest.java │ │ ├── metamodel │ │ └── ElementUtilTest.java │ │ ├── textual │ │ ├── FileNameDeresolverTest.java │ │ ├── SysMLElementSerializerTest.java │ │ └── models │ │ │ ├── AssertConstraintUsageWithOperatorExpressionTestModel.java │ │ │ ├── AttributeUsageWithBinaryOperatorExpressionTestModel.java │ │ │ ├── AttributeUsageWithBracketOperatorExpressionTestModel.java │ │ │ ├── AttributeUsageWithFeatureChainExpressionTestModel.java │ │ │ ├── AttributeUsageWithInvocationExpressionTestModel.java │ │ │ ├── AttributeUsageWithSequenceExpressionTestModel.java │ │ │ ├── ConditionalBinaryOperatorExpressionTestModel.java │ │ │ ├── ConstraintUsageWithOperatorExpressionTestModel.java │ │ │ ├── IsImplicitTest.java │ │ │ ├── UseCaseDefinitionTestModel.java │ │ │ └── sample │ │ │ ├── CameraModel.java │ │ │ ├── ItemTest.java │ │ │ └── PictureTakingModel.java │ │ └── util │ │ ├── ModelBuilder.java │ │ └── TestUtils.java ├── releng │ ├── pom.xml │ ├── syson-resources │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── README.adoc │ │ ├── checkstyle │ │ │ └── CheckstyleConfiguration.xml │ │ └── editor │ │ │ ├── CleanupProfile.xml │ │ │ ├── JavaFormatter.xml │ │ │ ├── codetemplates.xml │ │ │ └── syson.importorder │ └── syson-test-coverage │ │ ├── .project │ │ └── pom.xml ├── services │ ├── pom.xml │ ├── syson-diagram-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── diagram │ │ │ │ │ └── services │ │ │ │ │ ├── DiagramMutationDiagramService.java │ │ │ │ │ ├── DiagramMutationDndService.java │ │ │ │ │ ├── DiagramMutationElementService.java │ │ │ │ │ ├── DiagramMutationExposeService.java │ │ │ │ │ ├── DiagramMutationLabelService.java │ │ │ │ │ ├── DiagramMutationMoveService.java │ │ │ │ │ ├── DiagramQueryElementService.java │ │ │ │ │ ├── DiagramQueryLabelService.java │ │ │ │ │ ├── api │ │ │ │ │ └── IDiagramLabelService.java │ │ │ │ │ ├── aql │ │ │ │ │ ├── DiagramMutationAQLService.java │ │ │ │ │ └── DiagramQueryAQLService.java │ │ │ │ │ └── utils │ │ │ │ │ └── MultiLineLabelSwitch.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── diagram │ │ │ │ └── services │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ ├── CodingRulesTests.java │ │ │ │ ├── DiagramQueryLabelServiceTest.java │ │ │ │ └── utils │ │ │ │ └── MultilineLabelSwitchTest.java │ │ │ └── resources │ │ │ └── .gitkeep │ ├── syson-direct-edit-grammar │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── direct │ │ │ │ └── edit │ │ │ │ └── grammars │ │ │ │ ├── DirectEdit.interp │ │ │ │ ├── DirectEdit.tokens │ │ │ │ ├── DirectEditBaseListener.java │ │ │ │ ├── DirectEditLexer.interp │ │ │ │ ├── DirectEditLexer.java │ │ │ │ ├── DirectEditLexer.tokens │ │ │ │ ├── DirectEditListener.java │ │ │ │ └── DirectEditParser.java │ │ │ └── resources │ │ │ └── DirectEdit.g4 │ ├── syson-form-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── form │ │ │ │ │ └── services │ │ │ │ │ └── aql │ │ │ │ │ ├── FormMutationAQLService.java │ │ │ │ │ └── FormQueryAQLService.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── form │ │ │ │ └── services │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ └── CodingRulesTests.java │ │ │ └── resources │ │ │ └── .gitkeep │ ├── syson-model-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── model │ │ │ │ │ └── services │ │ │ │ │ ├── ModelMutationElementService.java │ │ │ │ │ ├── ModelQueryElementService.java │ │ │ │ │ └── aql │ │ │ │ │ ├── ModelMutationAQLService.java │ │ │ │ │ └── ModelQueryAQLService.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── model │ │ │ │ └── services │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ ├── CodingRulesTests.java │ │ │ │ └── ModelMutationElementServiceTests.java │ │ │ └── resources │ │ │ └── .gitkeep │ ├── syson-representation-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── representation │ │ │ │ │ └── services │ │ │ │ │ └── aql │ │ │ │ │ ├── RepresentationMutationAQLService.java │ │ │ │ │ └── RepresentationQueryAQLService.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── representation │ │ │ │ └── services │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ └── CodingRulesTests.java │ │ │ └── resources │ │ │ └── .gitkeep │ ├── syson-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ ├── services │ │ │ │ │ ├── AttributeToDirectEditSwitch.java │ │ │ │ │ ├── ColorProvider.java │ │ │ │ │ ├── DeleteService.java │ │ │ │ │ ├── DiagramDirectEditListener.java │ │ │ │ │ ├── ElementInitializerSwitch.java │ │ │ │ │ ├── FeatureChainComputer.java │ │ │ │ │ ├── ImportService.java │ │ │ │ │ ├── LabelService.java │ │ │ │ │ ├── NodeDescriptionService.java │ │ │ │ │ ├── RelatedElementsSwitch.java │ │ │ │ │ ├── SimpleNameDeresolver.java │ │ │ │ │ ├── SysMLMoveElementService.java │ │ │ │ │ ├── ToolService.java │ │ │ │ │ ├── UtilService.java │ │ │ │ │ └── api │ │ │ │ │ │ ├── ISysMLMoveElementService.java │ │ │ │ │ │ ├── ISysONResourceService.java │ │ │ │ │ │ ├── MoveStatus.java │ │ │ │ │ │ ├── SiriusWebCoreServices.java │ │ │ │ │ │ └── ViewDefinitionKind.java │ │ │ │ │ └── util │ │ │ │ │ ├── AQLConstants.java │ │ │ │ │ ├── AQLUtils.java │ │ │ │ │ ├── DescriptionNameGenerator.java │ │ │ │ │ ├── GetIntermediateContainerCreationSwitch.java │ │ │ │ │ ├── IDescriptionNameGenerator.java │ │ │ │ │ ├── NamedProxy.java │ │ │ │ │ ├── NoDerivedCrossReferencer.java │ │ │ │ │ ├── NodeFinder.java │ │ │ │ │ ├── ServiceMethod.java │ │ │ │ │ ├── StandardDiagramsConstants.java │ │ │ │ │ ├── SysMLMetamodelHelper.java │ │ │ │ │ ├── SysONEContentAdapter.java │ │ │ │ │ ├── SysONEcoreUtil.java │ │ │ │ │ ├── SysONRepresentationDescriptionIdentifiers.java │ │ │ │ │ ├── SysmlEClassSwitch.java │ │ │ │ │ └── ViewConstants.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ ├── services │ │ │ │ ├── AbstractServiceTest.java │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ ├── CodingRulesTests.java │ │ │ │ ├── DeleteServiceTest.java │ │ │ │ ├── DiagramDirectEditListenerTest.java │ │ │ │ ├── ElementInitializerSwitchTest.java │ │ │ │ ├── FeatureChainComputerTest.java │ │ │ │ ├── ImportServiceTest.java │ │ │ │ ├── SysMLMoveElementServiceTest.java │ │ │ │ └── data │ │ │ │ │ ├── ItemAndAttributesModelTest.java │ │ │ │ │ ├── ItemsModelTest.java │ │ │ │ │ └── SmallFlashlightExample.java │ │ │ │ └── util │ │ │ │ └── DescriptionNameGeneratorTest.java │ │ │ └── resources │ │ │ └── testImport.xmi │ ├── syson-sysml-metamodel-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysml │ │ │ │ │ └── metamodel │ │ │ │ │ └── services │ │ │ │ │ ├── MetamodelElementQueryService.java │ │ │ │ │ └── MetamodelMutationElementService.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── sysml │ │ │ │ └── metamodel │ │ │ │ └── services │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ └── CodingRulesTests.java │ │ │ └── resources │ │ │ └── .gitkeep │ ├── syson-sysml-rest-api-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.springframework.ide.eclipse.boot.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── sysml │ │ │ │ │ └── rest │ │ │ │ │ └── api │ │ │ │ │ ├── SysMLv2JsonSerializer.java │ │ │ │ │ ├── SysMLv2SerializerConfig.java │ │ │ │ │ ├── SysONObjectRestService.java │ │ │ │ │ └── SysONProjectDataVersioningRestService.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── sysml │ │ │ └── rest │ │ │ └── api │ │ │ ├── ArchitectureConstants.java │ │ │ └── CodingRulesTests.java │ ├── syson-table-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── syson │ │ │ │ │ └── table │ │ │ │ │ └── services │ │ │ │ │ └── aql │ │ │ │ │ ├── TableMutationAQLService.java │ │ │ │ │ └── TableQueryAQLService.java │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── table │ │ │ │ └── services │ │ │ │ ├── ArchitectureConstants.java │ │ │ │ └── CodingRulesTests.java │ │ │ └── resources │ │ │ └── .gitkeep │ └── syson-tree-services │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── tree │ │ │ │ ├── explorer │ │ │ │ ├── filters │ │ │ │ │ ├── HideExposeElementsTreeItemAlteredContentProvider.java │ │ │ │ │ ├── HideKerMLStandardLibrariesTreeAlteredContentProvider.java │ │ │ │ │ ├── HideMembershipsTreeItemAlteredContentProvider.java │ │ │ │ │ ├── HideRootNamespaceTreeItemAlteredContentProvider.java │ │ │ │ │ ├── HideSysMLStandardLibrariesTreeAlteredContentProvider.java │ │ │ │ │ ├── HideUserLibrariesTreeAlteredContentProvider.java │ │ │ │ │ └── SysONTreeFilterProvider.java │ │ │ │ ├── fragments │ │ │ │ │ ├── KerMLStandardLibraryDirectory.java │ │ │ │ │ ├── LibrariesDirectory.java │ │ │ │ │ ├── SysMLStandardLibraryDirectory.java │ │ │ │ │ └── UserLibrariesDirectory.java │ │ │ │ └── services │ │ │ │ │ ├── ComposedSysONExplorerService.java │ │ │ │ │ ├── SysONDefaultExplorerServices.java │ │ │ │ │ ├── SysONExplorerFilterService.java │ │ │ │ │ └── api │ │ │ │ │ ├── ISysONDefaultExplorerService.java │ │ │ │ │ ├── ISysONExplorerFilterService.java │ │ │ │ │ ├── ISysONExplorerFragment.java │ │ │ │ │ ├── ISysONExplorerService.java │ │ │ │ │ └── ISysONExplorerServiceDelegate.java │ │ │ │ └── services │ │ │ │ └── aql │ │ │ │ ├── TreeMutationAQLService.java │ │ │ │ └── TreeQueryAQLService.java │ │ └── resources │ │ │ └── .gitkeep │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── tree │ │ │ ├── explorer │ │ │ └── services │ │ │ │ ├── IRepresentationMetadataSearchServiceNoOp.java │ │ │ │ ├── LibrarySearchServiceNoOp.java │ │ │ │ ├── SysONDefaultExplorerServicesTest.java │ │ │ │ └── SysONExplorerFilterServiceTest.java │ │ │ └── services │ │ │ ├── ArchitectureConstants.java │ │ │ └── CodingRulesTests.java │ │ └── resources │ │ └── .gitkeep ├── tests │ ├── pom.xml │ └── syson-tests │ │ ├── .checkstyle │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.springframework.ide.eclipse.boot.prefs │ │ └── org.springframework.ide.eclipse.prefs │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── tests │ │ │ │ └── architecture │ │ │ │ └── AbstractCodingRulesTests.java │ │ └── resources │ │ │ └── .gitkeep │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── syson │ │ └── tests │ │ ├── GeneralPurposeTests.java │ │ └── GitCommitMessageTests.java └── views │ ├── pom.xml │ ├── syson-common-view │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── common │ │ │ │ └── view │ │ │ │ ├── SysONViewDescriptionProvider.java │ │ │ │ └── api │ │ │ │ └── IViewDescriptionProvider.java │ │ └── resources │ │ │ └── .gitkeep │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── syson │ │ └── common │ │ └── view │ │ ├── ArchitectureConstants.java │ │ └── CodingRulesTests.java │ ├── syson-diagram-common-view │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ ├── DescriptionsId.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── diagram │ │ │ │ └── common │ │ │ │ └── view │ │ │ │ ├── ViewDiagramElementFinder.java │ │ │ │ ├── edges │ │ │ │ ├── AbstractAllocateEdgeDescriptionProvider.java │ │ │ │ ├── AbstractBindingConnectorAsUsageEdgeDescriptionProvider.java │ │ │ │ ├── AbstractDefinitionOwnedUsageEdgeDescriptionProvider.java │ │ │ │ ├── AbstractDependencyEdgeDescriptionProvider.java │ │ │ │ ├── AbstractEdgeDescriptionProvider.java │ │ │ │ ├── AbstractFeatureTypingEdgeDescriptionProvider.java │ │ │ │ ├── AbstractFeatureValueEdgeDescriptionProvider.java │ │ │ │ ├── AbstractFlowUsageEdgeDescriptionProvider.java │ │ │ │ ├── AbstractInterfaceUsageEdgeDescriptionProvider.java │ │ │ │ ├── AbstractRedefinitionEdgeDescriptionProvider.java │ │ │ │ ├── AbstractSubclassificationEdgeDescriptionProvider.java │ │ │ │ ├── AbstractSubsettingEdgeDescriptionProvider.java │ │ │ │ ├── AbstractSuccessionEdgeDescriptionProvider.java │ │ │ │ ├── AbstractTransitionEdgeDescriptionProvider.java │ │ │ │ ├── AbstractUsageNestedUsageEdgeDescriptionProvider.java │ │ │ │ └── AnnotationEdgeDescriptionProvider.java │ │ │ │ ├── nodes │ │ │ │ ├── AbstractCompartmentNodeDescriptionProvider.java │ │ │ │ ├── AbstractControlNodeActionNodeDescriptionProvider.java │ │ │ │ ├── AbstractDefinitionNodeDescriptionProvider.java │ │ │ │ ├── AbstractEmptyDiagramNodeDescriptionProvider.java │ │ │ │ ├── AbstractFakeNodeDescriptionProvider.java │ │ │ │ ├── AbstractItemUsageBorderNodeDescriptionProvider.java │ │ │ │ ├── AbstractNodeDescriptionProvider.java │ │ │ │ ├── AbstractPackageNodeDescriptionProvider.java │ │ │ │ ├── AbstractPortUsageBorderNodeDescriptionProvider.java │ │ │ │ ├── AbstractUsageNodeDescriptionProvider.java │ │ │ │ ├── ActionFlowCompartmentNodeDescriptionProvider.java │ │ │ │ ├── AnnotatingNodeDescriptionProvider.java │ │ │ │ ├── CompartmentItemNodeDescriptionProvider.java │ │ │ │ ├── DecisionActionNodeDescriptionProvider.java │ │ │ │ ├── DoneActionNodeDescriptionProvider.java │ │ │ │ ├── ForkActionNodeDescriptionProvider.java │ │ │ │ ├── ImportedPackageNodeDescriptionProvider.java │ │ │ │ ├── InheritedCompartmentItemNodeDescriptionProvider.java │ │ │ │ ├── InterconnectionCompartmentNodeDescriptionProvider.java │ │ │ │ ├── JoinActionNodeDescriptionProvider.java │ │ │ │ ├── MergeActionNodeDescriptionProvider.java │ │ │ │ ├── StartActionNodeDescriptionProvider.java │ │ │ │ ├── StateTransitionCompartmentNodeDescriptionProvider.java │ │ │ │ ├── StatesCompartmentItemNodeDescriptionProvider.java │ │ │ │ └── StatesCompartmentNodeDescriptionProvider.java │ │ │ │ ├── services │ │ │ │ ├── AbstractViewNodeToolSectionSwitch.java │ │ │ │ ├── AbstractViewNodeToolsWithoutSectionSwitch.java │ │ │ │ ├── InheritedCompartmentItemFilterSwitch.java │ │ │ │ ├── RevealCompartmentSwitch.java │ │ │ │ ├── ShowDiagramsIconsService.java │ │ │ │ ├── ShowDiagramsInheritedMembersService.java │ │ │ │ ├── ViewCreateService.java │ │ │ │ ├── ViewEdgeService.java │ │ │ │ ├── ViewEdgeToolService.java │ │ │ │ ├── ViewEdgeToolSwitch.java │ │ │ │ ├── ViewFilterSwitch.java │ │ │ │ ├── ViewLabelService.java │ │ │ │ ├── ViewNodeService.java │ │ │ │ ├── ViewToolService.java │ │ │ │ ├── datafetchers │ │ │ │ │ ├── MutationShowDiagramsIconsDataFetcher.java │ │ │ │ │ ├── MutationShowDiagramsInheritedMembersDataFetcher.java │ │ │ │ │ ├── MutationShowDiagramsInheritedMembersFromStandardLibrariesDataFetcher.java │ │ │ │ │ ├── ShowDiagramsIconsDataFetcher.java │ │ │ │ │ ├── ShowDiagramsInheritedMembersDataFetcher.java │ │ │ │ │ └── ShowDiagramsInheritedMembersFromStandardLibrariesDataFetcher.java │ │ │ │ ├── description │ │ │ │ │ ├── NodeToolSectionNameSwitch.java │ │ │ │ │ ├── ToolConstants.java │ │ │ │ │ └── ToolDescriptionService.java │ │ │ │ ├── dto │ │ │ │ │ ├── ShowDiagramsIconsInput.java │ │ │ │ │ ├── ShowDiagramsIconsSuccessPayload.java │ │ │ │ │ ├── ShowDiagramsInheritedMembersFromStandardLibrariesInput.java │ │ │ │ │ ├── ShowDiagramsInheritedMembersFromStandardLibrariesSuccessPayload.java │ │ │ │ │ ├── ShowDiagramsInheritedMembersInput.java │ │ │ │ │ └── ShowDiagramsInheritedMembersSuccessPayload.java │ │ │ │ └── handlers │ │ │ │ │ ├── ShowDiagramsIconsEventHandler.java │ │ │ │ │ ├── ShowDiagramsInheritedMembersEventHandler.java │ │ │ │ │ └── ShowDiagramsInheritedMembersFromStandardLibrariesEventHandler.java │ │ │ │ └── tools │ │ │ │ ├── AbstractCompartmentNodeToolProvider.java │ │ │ │ ├── AbstractFreeFormCompartmentNodeToolProvider.java │ │ │ │ ├── AcceptActionNodeToolProvider.java │ │ │ │ ├── AcceptActionPayloadNodeToolProvider.java │ │ │ │ ├── AcceptActionPortUsageReceiverToolNodeProvider.java │ │ │ │ ├── ActionFlowCompartmentNodeToolProvider.java │ │ │ │ ├── ActorCompartmentNodeToolProvider.java │ │ │ │ ├── AllocationDefinitionEndCompartmentNodeToolProvider.java │ │ │ │ ├── AnnotatingElementOnRelationshipNodeToolProvider.java │ │ │ │ ├── AssignmentActionNodeToolProvider.java │ │ │ │ ├── CompartmentNodeToolProvider.java │ │ │ │ ├── DecisionActionNodeToolProvider.java │ │ │ │ ├── DoneActionNodeToolProvider.java │ │ │ │ ├── ExhibitStateWithReferenceNodeToolProvider.java │ │ │ │ ├── ForkActionNodeToolProvider.java │ │ │ │ ├── JoinActionNodeToolProvider.java │ │ │ │ ├── MergeActionNodeToolProvider.java │ │ │ │ ├── NamespaceImportNodeToolProvider.java │ │ │ │ ├── ObjectiveRequirementCompartmentNodeToolProvider.java │ │ │ │ ├── ObjectiveRequirementWithBaseRequirementCompartmentNodeToolProvider.java │ │ │ │ ├── ParameterCompartmentNodeToolProvider.java │ │ │ │ ├── PartUsageBindingConnectorAsUsageNodeToolProvider.java │ │ │ │ ├── PartUsageFeatureTypingNodeToolProvider.java │ │ │ │ ├── PartUsageFlowConnectionNodeToolProvider.java │ │ │ │ ├── PartUsageInterfaceNodeToolProvider.java │ │ │ │ ├── PartUsageSubsettingNodeToolProvider.java │ │ │ │ ├── PerformActionNodeToolProvider.java │ │ │ │ ├── ReferencingPerformActionNodeToolProvider.java │ │ │ │ ├── SetAsCompositeToolProvider.java │ │ │ │ ├── SetAsRefToolProvider.java │ │ │ │ ├── SetAsViewToolProvider.java │ │ │ │ ├── StakeholdersCompartmentNodeToolProvider.java │ │ │ │ ├── StartActionNodeToolProvider.java │ │ │ │ ├── StateSubactionNodeToolProvider.java │ │ │ │ ├── StateTransitionCompartmentNodeToolProvider.java │ │ │ │ ├── SubjectCompartmentNodeToolProvider.java │ │ │ │ ├── ToolSectionDescription.java │ │ │ │ └── ViewNodeAsToolProvider.java │ │ └── resources │ │ │ ├── icons │ │ │ ├── AddExistingElements.svg │ │ │ ├── AddExistingElementsRecursive.svg │ │ │ ├── done_action.svg │ │ │ └── start_action.svg │ │ │ ├── images │ │ │ ├── actor.svg │ │ │ ├── add_your_first_element.svg │ │ │ ├── decision_action.svg │ │ │ ├── done_action.svg │ │ │ ├── feature_in.svg │ │ │ ├── feature_inout.svg │ │ │ ├── feature_out.svg │ │ │ ├── fork_action.svg │ │ │ ├── graphicalDelete.svg │ │ │ ├── join_action.svg │ │ │ ├── merge_action.svg │ │ │ └── start_action.svg │ │ │ └── schema │ │ │ └── syson-diagrams.graphqls │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── syson │ │ └── diagram │ │ └── common │ │ └── view │ │ ├── ArchitectureConstants.java │ │ └── CodingRulesTests.java │ ├── syson-diagram-tests │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── diagram │ │ │ │ └── tests │ │ │ │ ├── checkers │ │ │ │ ├── AQLExpressionCallsExistingServicesChecker.java │ │ │ │ ├── AbstractChecker.java │ │ │ │ ├── Checker.java │ │ │ │ ├── DiagramDescriptionHasDropToolChecker.java │ │ │ │ ├── DiagramDescriptionHasNoEmptyDiagramNodeChecker.java │ │ │ │ ├── DiagramDescriptionHasOneEmptyDiagramNodeChecker.java │ │ │ │ ├── EdgeDescriptionHasDirectEditToolChecker.java │ │ │ │ ├── EdgeDescriptionHasReconnectToolChecker.java │ │ │ │ ├── NodeDescriptionHasChildrenChecker.java │ │ │ │ ├── NodeDescriptionHasDeleteToolChecker.java │ │ │ │ ├── NodeDescriptionHasDirectEditToolChecker.java │ │ │ │ ├── NodeDescriptionHasDropNodeToolChecker.java │ │ │ │ ├── NodeDescriptionHasNameChecker.java │ │ │ │ ├── NodeDescriptionIsReusedByChecker.java │ │ │ │ └── NodeDescriptionReusesChecker.java │ │ │ │ └── predicates │ │ │ │ └── DiagramPredicates.java │ │ └── resources │ │ │ └── .gitkeep │ │ └── test │ │ └── resources │ │ └── .gitkeep │ ├── syson-standard-diagrams-view │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── standard │ │ │ │ └── diagrams │ │ │ │ └── view │ │ │ │ ├── ActionFlowViewDiagramDescriptionProvider.java │ │ │ │ ├── ActionFlowViewJavaServiceProvider.java │ │ │ │ ├── InterconnectionViewDiagramDescriptionProvider.java │ │ │ │ ├── InterconnectionViewJavaServiceProvider.java │ │ │ │ ├── SDVDescriptionNameGenerator.java │ │ │ │ ├── SDVDescriptionProvider.java │ │ │ │ ├── SDVDiagramDescriptionProvider.java │ │ │ │ ├── SDVJavaServiceProvider.java │ │ │ │ ├── StateTransitionViewDiagramDescriptionProvider.java │ │ │ │ ├── StateTransitionViewJavaServiceProvider.java │ │ │ │ ├── SysONRepresentationDescriptionMetadataSorter.java │ │ │ │ ├── edges │ │ │ │ ├── AllocateEdgeDescriptionProvider.java │ │ │ │ ├── BindingConnectorAsUsageEdgeDescriptionProvider.java │ │ │ │ ├── DefinitionOwnedActionUsageEdgeDescriptionProvider.java │ │ │ │ ├── DefinitionOwnedUsageEdgeDescriptionProvider.java │ │ │ │ ├── DependencyEdgeDescriptionProvider.java │ │ │ │ ├── FeatureTypingEdgeDescriptionProvider.java │ │ │ │ ├── FeatureValueEdgeDescriptionProvider.java │ │ │ │ ├── FlowUsageEdgeDescriptionProvider.java │ │ │ │ ├── IncludeUseCaseDescriptionProvider.java │ │ │ │ ├── InterfaceUsageEdgeDescriptionProvider.java │ │ │ │ ├── NestedActorEdgeDescriptionProvider.java │ │ │ │ ├── RedefinitionEdgeDescriptionProvider.java │ │ │ │ ├── SubclassificationEdgeDescriptionProvider.java │ │ │ │ ├── SubsettingEdgeDescriptionProvider.java │ │ │ │ ├── SuccessionEdgeDescriptionProvider.java │ │ │ │ ├── TransitionEdgeDescriptionProvider.java │ │ │ │ └── UsageNestedUsageEdgeDescriptionProvider.java │ │ │ │ ├── nodes │ │ │ │ ├── ActionDefinitionParametersCompartmentNodeDescriptionProvider.java │ │ │ │ ├── ActionItemNodeDescriptionProvider.java │ │ │ │ ├── ActionUsageParametersCompartmentNodeDescriptionProvider.java │ │ │ │ ├── ActorNodeDescriptionProvider.java │ │ │ │ ├── AllocationDefinitionEndsCompartmentItemNodeDescriptionProvider.java │ │ │ │ ├── AllocationDefinitionEndsCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CaseDefinitionActorsCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CaseDefinitionObjectiveRequirementCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CaseDefinitionSubjectCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CaseUsageActorsCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CaseUsageObjectiveRequirementCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CaseUsageSubjectCompartmentNodeDescriptionProvider.java │ │ │ │ ├── CompartmentNodeDescriptionProvider.java │ │ │ │ ├── DefinitionNodeDescriptionProvider.java │ │ │ │ ├── FakeNodeDescriptionProvider.java │ │ │ │ ├── GeneralViewEmptyDiagramNodeDescriptionProvider.java │ │ │ │ ├── InheritedPortUsageBorderNodeDescriptionProvider.java │ │ │ │ ├── ItemUsageBorderNodeDescriptionProvider.java │ │ │ │ ├── PackageNodeDescriptionProvider.java │ │ │ │ ├── PerformActionsCompartmentItemNodeDescriptionProvider.java │ │ │ │ ├── PerformActionsCompartmentNodeDescriptionProvider.java │ │ │ │ ├── PortUsageBorderNodeDescriptionProvider.java │ │ │ │ ├── ReferenceUsageBorderNodeDescriptionProvider.java │ │ │ │ ├── RequirementDefinitionActorsCompartmentNodeDescriptionProvider.java │ │ │ │ ├── RequirementDefinitionStakeholdersCompartmentNodeDescriptionProvider.java │ │ │ │ ├── RequirementDefinitionSubjectCompartmentNodeDescriptionProvider.java │ │ │ │ ├── RequirementUsageActorsCompartmentNodeDescriptionProvider.java │ │ │ │ ├── RequirementUsageStakeholdersCompartmentNodeDescriptionProvider.java │ │ │ │ ├── RequirementUsageSubjectCompartmentNodeDescriptionProvider.java │ │ │ │ ├── SDVNodeDescriptionProviderSwitch.java │ │ │ │ ├── UsageNodeDescriptionProvider.java │ │ │ │ └── ViewUsageNodeDescriptionProvider.java │ │ │ │ └── services │ │ │ │ ├── ActionFlowViewCreateService.java │ │ │ │ ├── InterconnectionViewCreateService.java │ │ │ │ ├── SDVNodeToolSectionSwitch.java │ │ │ │ ├── SDVNodeToolsWithoutSectionSwitch.java │ │ │ │ ├── StateTransitionViewCreateService.java │ │ │ │ ├── SysONShowHideSDVElementEventHandler.java │ │ │ │ └── nodeactions │ │ │ │ └── managevisibility │ │ │ │ ├── ManageVisibilityNodeActionProvider.java │ │ │ │ ├── ManageVisibilityRevealValuedContentAction.java │ │ │ │ └── ManageVisibilityRevealValuedContentHandler.java │ │ └── resources │ │ │ └── .gitkeep │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── standard │ │ │ └── diagrams │ │ │ └── view │ │ │ ├── ArchitectureConstants.java │ │ │ ├── CodingRulesTests.java │ │ │ └── SDVDiagramDescriptionTests.java │ │ └── resources │ │ └── .gitkeep │ ├── syson-table-requirements-view │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.springframework.ide.eclipse.prefs │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── syson │ │ │ │ └── table │ │ │ │ └── requirements │ │ │ │ └── view │ │ │ │ ├── RTVDescriptionProvider.java │ │ │ │ ├── RTVJavaServiceProvider.java │ │ │ │ ├── RTVTableDescriptionProvider.java │ │ │ │ ├── datafetchers │ │ │ │ ├── MutationCreateRequirementDataFetcher.java │ │ │ │ └── MutationExposeRequirementsDataFetcher.java │ │ │ │ ├── dto │ │ │ │ ├── CreateRequirementEventHandler.java │ │ │ │ ├── CreateRequirementInput.java │ │ │ │ ├── ExposeRequirementsEventHandler.java │ │ │ │ └── ExposeRequirementsInput.java │ │ │ │ └── services │ │ │ │ ├── RTVMutationServices.java │ │ │ │ └── RTVQueryServices.java │ │ └── resources │ │ │ ├── images │ │ │ ├── graphicalDelete.svg │ │ │ └── semanticDelete.svg │ │ │ └── schema │ │ │ └── syson-table-requirements-view.graphqls │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── syson │ │ └── table │ │ └── requirements │ │ └── view │ │ ├── ArchitectureConstants.java │ │ └── CodingRulesTests.java │ └── syson-tree-explorer-view │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.springframework.ide.eclipse.prefs │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── syson │ │ │ └── tree │ │ │ └── explorer │ │ │ └── view │ │ │ ├── SysONExplorerContributionProvider.java │ │ │ ├── SysONExplorerJavaServiceProvider.java │ │ │ ├── SysONExplorerTreeDescriptionOrderer.java │ │ │ ├── SysONExplorerTreeDescriptionProvider.java │ │ │ ├── SysONTreeViewDescriptionProvider.java │ │ │ ├── duplicate │ │ │ ├── ElementContainmentFeatureProviderDelegate.java │ │ │ ├── SysMLContainmentMembershipLabelSwitch.java │ │ │ ├── SysONDuplicateDelegate.java │ │ │ ├── SysONDuplicateTargetBrowserTreeDescriptionIdProviderDelegate.java │ │ │ └── SysONDuplicateTargetBrowserTreeDescriptionProvider.java │ │ │ ├── handlers │ │ │ └── DropTreeItemHandler.java │ │ │ ├── menu │ │ │ └── context │ │ │ │ ├── CreateRepresentationInputProcessor.java │ │ │ │ └── SysONExplorerTreeItemContextMenuEntryProvider.java │ │ │ └── services │ │ │ ├── SysONExplorerInitialDirectEditTreeItemLabelProvider.java │ │ │ ├── SysONExplorerLabelService.java │ │ │ ├── SysONExplorerRenderVariablesCustomizer.java │ │ │ └── SysONExplorerTreePathProvider.java │ └── resources │ │ └── icons │ │ ├── LibraryResource.svg │ │ └── Resource.svg │ └── test │ └── java │ └── org │ └── eclipse │ └── syson │ └── tree │ └── explorer │ └── view │ ├── ArchitectureConstants.java │ ├── CodingRulesTests.java │ └── duplicate │ └── SysMLContainmentMembershipLabelSwitchTest.java ├── doc ├── .vale.ini ├── Dockerfile ├── adrs │ ├── 000_adopt_adrs.adoc │ ├── 001_support_direct_edit_in diagrams.adoc │ └── 002_services_organization.adoc ├── content │ ├── README │ ├── antora.yml │ └── modules │ │ ├── ROOT │ │ ├── README │ │ ├── assets │ │ │ ├── README │ │ │ ├── attachments │ │ │ │ └── README │ │ │ └── images │ │ │ │ ├── README │ │ │ │ ├── account_tree.svg │ │ │ │ ├── best.svg │ │ │ │ ├── cycle.svg │ │ │ │ ├── diversity.svg │ │ │ │ ├── editor_choice.svg │ │ │ │ ├── explore.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── footprint.svg │ │ │ │ ├── forum.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── hub.svg │ │ │ │ ├── icon_syson_black.svg │ │ │ │ ├── key-features.svg │ │ │ │ ├── new_releases.svg │ │ │ │ ├── overview.svg │ │ │ │ ├── person_play.svg │ │ │ │ ├── resources.svg │ │ │ │ ├── settings_heart.svg │ │ │ │ ├── sprint.svg │ │ │ │ ├── syson-overview.png │ │ │ │ ├── tap_app.svg │ │ │ │ ├── travel_explore.svg │ │ │ │ └── volunteer_activism.svg │ │ ├── examples │ │ │ └── README │ │ ├── nav.adoc │ │ ├── pages │ │ │ ├── README │ │ │ ├── faq.adoc │ │ │ ├── features.adoc │ │ │ ├── get-started.adoc │ │ │ ├── help.adoc │ │ │ ├── index.adoc │ │ │ ├── integration.adoc │ │ │ ├── introduction.adoc │ │ │ ├── reference.adoc │ │ │ ├── release-notes.adoc │ │ │ ├── security-policy.adoc │ │ │ └── user-interface-overview.adoc │ │ └── partials │ │ │ └── README │ │ ├── developer-guide │ │ ├── README │ │ ├── assets │ │ │ ├── README │ │ │ ├── attachments │ │ │ │ ├── README │ │ │ │ └── sirius-web-openapi.json │ │ │ └── images │ │ │ │ ├── README │ │ │ │ ├── SetupDev_SpringToolSuite_Check_Java.png │ │ │ │ ├── SetupDev_SpringToolSuite_Configure_Checkstyle_01.png │ │ │ │ ├── SetupDev_SpringToolSuite_Configure_Checkstyle_02.png │ │ │ │ ├── SetupDev_SpringToolSuite_Configure_Clean_Up.png │ │ │ │ ├── SetupDev_SpringToolSuite_Configure_Code_Templates.png │ │ │ │ ├── SetupDev_SpringToolSuite_Configure_Formatter.png │ │ │ │ ├── SetupDev_SpringToolSuite_Configure_Organize_Imports.png │ │ │ │ ├── SetupDev_SpringToolSuite_Docker_SysON.png │ │ │ │ ├── SetupDev_SpringToolSuite_Import_Sources_01.png │ │ │ │ ├── SetupDev_SpringToolSuite_Import_Sources_02.png │ │ │ │ ├── SetupDev_SpringToolSuite_Import_Sources_03.png │ │ │ │ ├── SetupDev_SpringToolSuite_Install_Checkstyle.png │ │ │ │ ├── SetupDev_SpringToolSuite_Install_EMF.png │ │ │ │ ├── SetupDev_SpringToolSuite_Run_Configuration_SysON.png │ │ │ │ ├── SetupDev_SpringToolSuite_SpringBootApp_Console_SysON.png │ │ │ │ ├── create_element_recipe_1_get_elements.png │ │ │ │ ├── create_element_recipe_2_1_post_owning_membership.png │ │ │ │ ├── create_element_recipe_2_2_get_elements.png │ │ │ │ ├── create_element_recipe_2_3_post_part_definition.png │ │ │ │ ├── create_element_recipe_3_get_elements.png │ │ │ │ ├── dev-guide-how-to-create-a-service.bpmn │ │ │ │ ├── dev-guide-how-to-create-a-service.png │ │ │ │ ├── dev-guide-how-to-create-a-service.svg │ │ │ │ ├── environment-java-build-path.png │ │ │ │ ├── environment-m2e-version.png │ │ │ │ └── environment-settings.png │ │ ├── examples │ │ │ ├── README │ │ │ ├── create_project.py │ │ │ ├── fetch_commits.py │ │ │ ├── fetch_elements.py │ │ │ ├── fetch_projects.py │ │ │ ├── get_feature_members.py │ │ │ ├── get_owned_elements.py │ │ │ ├── init_api.py │ │ │ └── new_objects_from_text.py │ │ ├── pages │ │ │ ├── README │ │ │ ├── api │ │ │ │ ├── api-cookbook.adoc │ │ │ │ ├── api-details.adoc │ │ │ │ └── api.adoc │ │ │ ├── extend.adoc │ │ │ └── index.adoc │ │ └── partials │ │ │ ├── README │ │ │ ├── create_element_recipe.adoc │ │ │ ├── element_owned_elements_recipe.adoc │ │ │ ├── nav.adoc │ │ │ ├── new_objects_from_text.adoc │ │ │ └── project_commit_branch_tag_recipe.adoc │ │ ├── installation-guide │ │ ├── README │ │ ├── assets │ │ │ ├── README │ │ │ ├── attachments │ │ │ │ └── README │ │ │ └── images │ │ │ │ ├── README │ │ │ │ ├── download.excalidraw │ │ │ │ ├── download.png │ │ │ │ ├── latest-version.png │ │ │ │ └── syson-installation-architecture.drawio.svg │ │ ├── examples │ │ │ └── README │ │ ├── pages │ │ │ ├── README │ │ │ ├── anti-virus.adoc │ │ │ ├── architecture.adoc │ │ │ ├── how-tos │ │ │ │ ├── https.adoc │ │ │ │ ├── install.adoc │ │ │ │ └── install │ │ │ │ │ ├── ecosystem_only.adoc │ │ │ │ │ ├── local_test.adoc │ │ │ │ │ ├── multi_user_test.adoc │ │ │ │ │ └── production_deploy.adoc │ │ │ ├── index.adoc │ │ │ ├── migration-process.adoc │ │ │ ├── requirements.adoc │ │ │ └── troubleshooting.adoc │ │ └── partials │ │ │ ├── README │ │ │ └── nav.adoc │ │ ├── product-legal │ │ ├── README │ │ ├── assets │ │ │ ├── README │ │ │ ├── attachments │ │ │ │ └── README │ │ │ └── images │ │ │ │ └── README │ │ ├── examples │ │ │ ├── README │ │ │ └── eplv2-license.txt │ │ ├── pages │ │ │ ├── README │ │ │ └── index.adoc │ │ └── partials │ │ │ └── README │ │ └── user-manual │ │ ├── README │ │ ├── assets │ │ ├── README │ │ ├── attachments │ │ │ └── README │ │ └── images │ │ │ ├── BindingConnectorAsUsageOnItemUsage.png │ │ │ ├── DriveBatmobileActionFlow.png │ │ │ ├── FeatureValueDetailView.png │ │ │ ├── FeatureValueEdge.png │ │ │ ├── FlowConnectionUsageOnItems.png │ │ │ ├── GV_TextualRepresentation.png │ │ │ ├── ItemParameters.png │ │ │ ├── NestedOccurrenceUsageEdge.png │ │ │ ├── README │ │ │ ├── StateTransitionUsageLabels.png │ │ │ ├── StateTransitionsCmpOnStates.png │ │ │ ├── appearance_custom_applied.png │ │ │ ├── appearance_tool_section.png │ │ │ ├── batmobile-project.png │ │ │ ├── connection-definition-nodes.png │ │ │ ├── details-right-sidebar-details.png │ │ │ ├── developer_guide.svg │ │ │ ├── editor-editor.png │ │ │ ├── editor-left-sidebar-explorer.png │ │ │ ├── editor-left-sidebar-validation.png │ │ │ ├── editor-projectActions.png │ │ │ ├── editor-right-sidebar-details.png │ │ │ ├── editor-right-sidebar-related-elements.png │ │ │ ├── editor-right-sidebar-representations.png │ │ │ ├── editor-toolbar.png │ │ │ ├── editor.png │ │ │ ├── editor_choice.svg │ │ │ ├── environment-java-build-path.png │ │ │ ├── environment-m2e-version.png │ │ │ ├── environment-settings.png │ │ │ ├── explore.svg │ │ │ ├── explorer-duplicate-object-dialog.png │ │ │ ├── explorer-duplicate-object-menu.png │ │ │ ├── explorer-hide-expose-element-filter.png │ │ │ ├── explorer-short-name-label.png │ │ │ ├── explorer-toolbar-select-action.png │ │ │ ├── export-textual-download.png │ │ │ ├── flashlight-action-tree.png │ │ │ ├── flashlight-interconnection.png │ │ │ ├── flashlight-model-organization.png │ │ │ ├── flashlight-requirements-allocation.png │ │ │ ├── flashlight-requirements-tree.png │ │ │ ├── flashlight-states.png │ │ │ ├── footprint.svg │ │ │ ├── forum.svg │ │ │ ├── gv-IncludeUseCaseUsage.png │ │ │ ├── gv-actions-perform-actions-compartment.png │ │ │ ├── gv-allocation-edge.png │ │ │ ├── gv-annotating-node.png │ │ │ ├── gv-containment-edge.png │ │ │ ├── gv-dependency-edge.png │ │ │ ├── gv-diagram-creation.png │ │ │ ├── gv-expose-package-recursive.png │ │ │ ├── gv-expose-package.png │ │ │ ├── gv-expose-part-in-package.png │ │ │ ├── gv-featureTyping-edge.png │ │ │ ├── gv-inherited-port-edge-tools.png │ │ │ ├── gv-inherited-port.png │ │ │ ├── gv-overview.png │ │ │ ├── gv-package-node.png │ │ │ ├── gv-part-compartment-node.png │ │ │ ├── gv-part-node.png │ │ │ ├── gv-partDef-compartment-node.png │ │ │ ├── gv-partDef-node.png │ │ │ ├── gv-parts-compartment.png │ │ │ ├── gv-parts-perform-actions-compartment.png │ │ │ ├── gv-port-as-border-node.png │ │ │ ├── gv-port-edge-tools.png │ │ │ ├── gv-redefinition-edge.png │ │ │ ├── gv-subclassification-edge.png │ │ │ ├── gv-subsetting-edge.png │ │ │ ├── gv-succession-edge.png │ │ │ ├── hands-on-delete-element-from-explorer.png │ │ │ ├── hands-on-delete-element-from-representation.png │ │ │ ├── hands-on-delete-model.png │ │ │ ├── hands-on-delete-project-editor.png │ │ │ ├── hands-on-delete-project-homepage.png │ │ │ ├── hands-on-delete-representation-from-explorer.png │ │ │ ├── hands-on-delete-representation-from-representation-view.png │ │ │ ├── hands-on-download-model.png │ │ │ ├── hands-on-download-project-editor.png │ │ │ ├── hands-on-download-project-homepage.png │ │ │ ├── hands-on-expand-all.png │ │ │ ├── hands-on-filter-element.png │ │ │ ├── hands-on-filter-name-shortcut.png │ │ │ ├── hands-on-new-element.png │ │ │ ├── hands-on-new-model-result.png │ │ │ ├── hands-on-new-model.png │ │ │ ├── hands-on-new-project-conf.png │ │ │ ├── hands-on-new-project-result.png │ │ │ ├── hands-on-new-project.png │ │ │ ├── hands-on-new-representation.png │ │ │ ├── hands-on-new-template.png │ │ │ ├── hands-on-new-template_batmobile.png │ │ │ ├── hands-on-read-element.png │ │ │ ├── hands-on-rename-element-from-details.png │ │ │ ├── hands-on-rename-element-from-project-editor.png │ │ │ ├── hands-on-rename-element-from-representation.png │ │ │ ├── hands-on-rename-model.png │ │ │ ├── hands-on-rename-project-editor.png │ │ │ ├── hands-on-rename-project-homepage.png │ │ │ ├── hands-on-rename-representation.png │ │ │ ├── hands-on-representations-view.png │ │ │ ├── hands-on-share-representation.png │ │ │ ├── hands-on-switch-left-side-bar.png │ │ │ ├── hands-on-switch-right-side-bar.png │ │ │ ├── hands-on-synch-editor-result.png │ │ │ ├── hands-on-synch-editor.png │ │ │ ├── hands-on-upload-model.png │ │ │ ├── hands-on-upload-select-file.png │ │ │ ├── hands-on-upload.png │ │ │ ├── homepage-existing-projects.png │ │ │ ├── homepage-new-project.png │ │ │ ├── homepage-toolbar.png │ │ │ ├── homepage.png │ │ │ ├── icon_syson_black.svg │ │ │ ├── img.png │ │ │ ├── import-textual-new-objects-from-text-1.png │ │ │ ├── import-textual-new-objects-from-text-2.png │ │ │ ├── import-textual-new-objects-from-text-3.png │ │ │ ├── import-textual-upload-model-1.png │ │ │ ├── import-textual-upload-model-2.png │ │ │ ├── import-textual-upload-model-3.png │ │ │ ├── import-textual-upload-model-4.png │ │ │ ├── import-textual-upload-model-5.png │ │ │ ├── interconnection-view-allocation-edge.png │ │ │ ├── interconnection-view-annotating-node.png │ │ │ ├── interconnection-view-bind-edge.png │ │ │ ├── interconnection-view-diagram-creation.png │ │ │ ├── interconnection-view-overview.png │ │ │ ├── interconnection-view-part-compartment-node.png │ │ │ ├── interconnection-view-part-node.png │ │ │ ├── interconnection-view-port-node.png │ │ │ ├── manage-drag-drop-graphical.png │ │ │ ├── manage-elements-creation-search.png │ │ │ ├── manage-elements-delete-from-diagram.png │ │ │ ├── manage-elements-delete-from-model.png │ │ │ ├── manage-elements-fromBackground-creation-2.png │ │ │ ├── manage-elements-fromBackground-creation.png │ │ │ ├── manage-elements-fromCompartment-creation.png │ │ │ ├── manage-elements-fromElement-creation.png │ │ │ ├── manage-elements-fromParentCompartment-creation.png │ │ │ ├── manage-elements-semantic-deletion.png │ │ │ ├── manage-existing-elements-add.png │ │ │ ├── manage-group-element-toolbar.png │ │ │ ├── manage-labels-compartment.png │ │ │ ├── manage-labels-keywords.png │ │ │ ├── manage-labels-multiplicity.png │ │ │ ├── manage-labels-specialization.png │ │ │ ├── manage-relationships-createEdge-arrow.png │ │ │ ├── manage-relationships-createEdge-feedback.png │ │ │ ├── manage-relationships-createEdge-popup.png │ │ │ ├── manage-toolbar-main.png │ │ │ ├── namespace-import-wrapped-label.png │ │ │ ├── overview.svg │ │ │ ├── package-node-width-after.png │ │ │ ├── package-node-width-before.png │ │ │ ├── parametric-modeling-connected-port.png │ │ │ ├── query-view-getObjectById.png │ │ │ ├── query-view-overview.png │ │ │ ├── query-view-ownedMember.png │ │ │ ├── query-view-selection.png │ │ │ ├── query-view-self.png │ │ │ ├── relatedElements-right-sidebar-related-elements.png │ │ │ ├── release-notes-GV-actionDefinition-parameters.png │ │ │ ├── release-notes-accept-action.png │ │ │ ├── release-notes-action-in-compartment.png │ │ │ ├── release-notes-actor-representation.png │ │ │ ├── release-notes-add-existing-element-on-state.png │ │ │ ├── release-notes-add-existing-elements.png │ │ │ ├── release-notes-afv-allocate.png │ │ │ ├── release-notes-afv-control-nodes.png │ │ │ ├── release-notes-attribut-compartmen-interconnection-view.png │ │ │ ├── release-notes-avoid-nestedPart-cycle.png │ │ │ ├── release-notes-become-nested-attribute.png │ │ │ ├── release-notes-command-palette-search.png │ │ │ ├── release-notes-comment-note.png │ │ │ ├── release-notes-compartment-creation.png │ │ │ ├── release-notes-composite-edges.png │ │ │ ├── release-notes-create-diagram-on-root-namespace-element.png │ │ │ ├── release-notes-delete-containment-edge.png │ │ │ ├── release-notes-details-view-transition.png │ │ │ ├── release-notes-details-view-typed-by-property.png │ │ │ ├── release-notes-diagram-standard-libraries-elements-qualified-names.png │ │ │ ├── release-notes-diagrams-export-as-png.png │ │ │ ├── release-notes-diagrams-package-adjust-size.png │ │ │ ├── release-notes-direct-edit-cardinality.png │ │ │ ├── release-notes-direct-edit.png │ │ │ ├── release-notes-doc-compartment.png │ │ │ ├── release-notes-documentation-note.png │ │ │ ├── release-notes-ends-compartment-AllocationDefinition.png │ │ │ ├── release-notes-enumeration-definition.png │ │ │ ├── release-notes-feature-typing-tool.png │ │ │ ├── release-notes-filters.png │ │ │ ├── release-notes-gv-actor-creation-selection-dialog-tree.png │ │ │ ├── release-notes-gv-comment-on-dependency.png │ │ │ ├── release-notes-gv-concern-definition.png │ │ │ ├── release-notes-gv-concern-usage.png │ │ │ ├── release-notes-gv-do-not-display-twice-1.png │ │ │ ├── release-notes-gv-do-not-display-twice-2.png │ │ │ ├── release-notes-gv-satisfy-requirement-usage.png │ │ │ ├── release-notes-gv-stakeholder-creation-selection-dialog-tree.png │ │ │ ├── release-notes-gv-stakeholders.png │ │ │ ├── release-notes-gv-subject-creation-selection-dialog-tree.png │ │ │ ├── release-notes-gv-tool-bar.png │ │ │ ├── release-notes-handle-allocation.png │ │ │ ├── release-notes-handle-occurence.png │ │ │ ├── release-notes-handle-usecase.png │ │ │ ├── release-notes-help-background.png │ │ │ ├── release-notes-hide-capabilities.png │ │ │ ├── release-notes-inherited-feature-cpt.png │ │ │ ├── release-notes-inherited-feature.png │ │ │ ├── release-notes-insert-textual-sysmlv2-dialog.png │ │ │ ├── release-notes-insert-textual-sysmlv2-menu.png │ │ │ ├── release-notes-interface-usage.png │ │ │ ├── release-notes-libraries-directories.png │ │ │ ├── release-notes-libraries-in-ref-widget.png │ │ │ ├── release-notes-library-update-action.png │ │ │ ├── release-notes-library-update-dialog.png │ │ │ ├── release-notes-library-update-impact-analysis.png │ │ │ ├── release-notes-library-update-success.png │ │ │ ├── release-notes-manage-visibility.png │ │ │ ├── release-notes-membership-visibility.png │ │ │ ├── release-notes-namespace-import.png │ │ │ ├── release-notes-navigation-bar-menu-icon.png │ │ │ ├── release-notes-navigation-bar-menu.png │ │ │ ├── release-notes-nested-composite-edge.png │ │ │ ├── release-notes-new-object.png │ │ │ ├── release-notes-new-palette-search-bar.png │ │ │ ├── release-notes-new-palette-shortcuts.png │ │ │ ├── release-notes-new-palette.png │ │ │ ├── release-notes-package-header.png │ │ │ ├── release-notes-package-name-ellipsis-overflow.png │ │ │ ├── release-notes-port-direction.png │ │ │ ├── release-notes-port-item-tool.png │ │ │ ├── release-notes-port-label.png │ │ │ ├── release-notes-publication-command.png │ │ │ ├── release-notes-publication-dialog.png │ │ │ ├── release-notes-publication-import-choices.png │ │ │ ├── release-notes-publication-import-command.png │ │ │ ├── release-notes-publication-import-dialog.png │ │ │ ├── release-notes-publication-import-result.png │ │ │ ├── release-notes-publication-import-success.png │ │ │ ├── release-notes-publication-import-user-library-with-library-name-and-read-only.png │ │ │ ├── release-notes-publication-import-user-library.png │ │ │ ├── release-notes-publication-libraries-menu.png │ │ │ ├── release-notes-publication-libraries.png │ │ │ ├── release-notes-publication-library.png │ │ │ ├── release-notes-publication-model.png │ │ │ ├── release-notes-publication-success.png │ │ │ ├── release-notes-query-view.png │ │ │ ├── release-notes-reference-nested-usages.png │ │ │ ├── release-notes-reqdef-req-tool.png │ │ │ ├── release-notes-requirements.png │ │ │ ├── release-notes-reveal-compartments.png │ │ │ ├── release-notes-root-namespace.png │ │ │ ├── release-notes-rotative-image.png │ │ │ ├── release-notes-show-hide-icons-in-diagram.png │ │ │ ├── release-notes-show-hide-inherited-members-from-standard-libraries-in-diagram.png │ │ │ ├── release-notes-show-hide-inherited-members-in-diagram.png │ │ │ ├── release-notes-standard-library-directories.png │ │ │ ├── release-notes-state-transition-cpt.png │ │ │ ├── release-notes-succession-edge.png │ │ │ ├── release-notes-tools-name.png │ │ │ ├── release-notes-validation-view.png │ │ │ ├── release-notes-visibility-icons.png │ │ │ ├── representations-right-sidebar-representations.png │ │ │ ├── requirement-managment-fromBackground-creation.png │ │ │ ├── requirement-managment-fromRequirement-creation.png │ │ │ ├── requirement-managment-node-representation.png │ │ │ ├── requirements-table-view-delete-actions.png │ │ │ ├── requirements-table-view-empty.png │ │ │ ├── requirements-table-view-import-action.png │ │ │ ├── requirements-table-view-imported-reqs.png │ │ │ ├── requirements-table-view-new-req-action.png │ │ │ ├── requirements-table-view-new-req.png │ │ │ ├── resources.svg │ │ │ ├── sdv-action-parameters.png │ │ │ ├── settings_heart.svg │ │ │ ├── support_agent.svg │ │ │ ├── syson-overview.png │ │ │ ├── travel_explore.svg │ │ │ ├── tutorial-referenced-library.png │ │ │ ├── tutorial-result.png │ │ │ ├── validation-view-collapsed.png │ │ │ ├── validation-view-expanded.png │ │ │ ├── view-as-node-tool-after.png │ │ │ ├── view-as-node-tool.png │ │ │ ├── view-usage-graphical-contents.png │ │ │ ├── view-usage-label-with-type-explorer-view.png │ │ │ ├── view-usage-nodes.png │ │ │ └── volunteer_activism.svg │ │ ├── examples │ │ └── README │ │ ├── pages │ │ ├── README │ │ ├── best-practices.adoc │ │ ├── concepts.adoc │ │ ├── contribute.adoc │ │ ├── cycle.adoc │ │ ├── faq │ │ │ └── faq.adoc │ │ ├── features │ │ │ ├── action-flow-view.adoc │ │ │ ├── cm.adoc │ │ │ ├── collaboration.adoc │ │ │ ├── details.adoc │ │ │ ├── diagramming-tools.adoc │ │ │ ├── editor.adoc │ │ │ ├── explorer.adoc │ │ │ ├── features.adoc │ │ │ ├── general-view.adoc │ │ │ ├── homepage.adoc │ │ │ ├── import-export-textual.adoc │ │ │ ├── interconnection-view.adoc │ │ │ ├── keyboard-shortcuts.adoc │ │ │ ├── library-import.adoc │ │ │ ├── mbse-capability.adoc │ │ │ ├── other-views.adoc │ │ │ ├── parametric-modeling.adoc │ │ │ ├── publication.adoc │ │ │ ├── query-view.adoc │ │ │ ├── related-elements.adoc │ │ │ ├── representations-view.adoc │ │ │ ├── requirement-management.adoc │ │ │ ├── scaling-limits.adoc │ │ │ ├── security.adoc │ │ │ ├── simulation.adoc │ │ │ ├── state-transition-view.adoc │ │ │ ├── sysmlv2-overview.adoc │ │ │ └── validation.adoc │ │ ├── forum.adoc │ │ ├── hands-on │ │ │ ├── hands-on.adoc │ │ │ ├── how-tos │ │ │ │ ├── explorer.adoc │ │ │ │ ├── model-management.adoc │ │ │ │ ├── project-management.adoc │ │ │ │ ├── representation-operations.adoc │ │ │ │ ├── representations-view.adoc │ │ │ │ └── user-interface-navigation.adoc │ │ │ └── tutorials │ │ │ │ ├── batmobile.adoc │ │ │ │ ├── flashlight.adoc │ │ │ │ └── tutorials.adoc │ │ ├── help.adoc │ │ ├── index.adoc │ │ ├── integration.adoc │ │ ├── integration │ │ │ ├── capella.adoc │ │ │ └── interoperability.adoc │ │ ├── key-features.adoc │ │ ├── release-notes │ │ │ ├── 2023.12.0.adoc │ │ │ ├── 2024.1.0.adoc │ │ │ ├── 2024.11.0.adoc │ │ │ ├── 2024.3.0.adoc │ │ │ ├── 2024.5.0.adoc │ │ │ ├── 2024.7.0.adoc │ │ │ ├── 2024.9.0.adoc │ │ │ ├── 2025.1.0.adoc │ │ │ ├── 2025.10.0.adoc │ │ │ ├── 2025.12.0.adoc │ │ │ ├── 2025.2.0.adoc │ │ │ ├── 2025.4.0.adoc │ │ │ ├── 2025.6.0.adoc │ │ │ ├── 2025.8.0.adoc │ │ │ ├── 2026.1.0.adoc │ │ │ └── release-notes.adoc │ │ ├── resources.adoc │ │ ├── support.adoc │ │ ├── tour.adoc │ │ ├── updates.adoc │ │ ├── user-interface-overview.adoc │ │ └── what-is.adoc │ │ └── partials │ │ ├── README │ │ ├── before-you-start-experimental-all.adoc │ │ ├── feature-os.adoc │ │ ├── feature-status-experimental.adoc │ │ ├── feature-status-stable.adoc │ │ ├── feature-usage-admin.adoc │ │ ├── feature-usage-all.adoc │ │ ├── help-action.adoc │ │ ├── homepage-action.adoc │ │ ├── intro.adoc │ │ ├── libraries-action.adoc │ │ ├── manage-drag-drop.adoc │ │ ├── manage-elements-diagram.adoc │ │ ├── manage-existing-elements.adoc │ │ ├── manage-group-elements.adoc │ │ ├── manage-labels-diagram.adoc │ │ ├── manage-relationships-diagram.adoc │ │ ├── manage-toolbar-diagram.adoc │ │ ├── nav-features.adoc │ │ ├── nav-help.adoc │ │ ├── nav-howtos.adoc │ │ ├── nav-integration.adoc │ │ ├── nav-intro.adoc │ │ ├── nav-tuto.adoc │ │ ├── nav-ui.adoc │ │ ├── nav-updates.adoc │ │ ├── projects-action.adoc │ │ └── view-unsynchronized.adoc ├── doc-ui │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── .gulp.json │ ├── .nvmrc │ ├── .stylelintrc │ ├── gulp.d │ │ ├── lib │ │ │ ├── create-task.js │ │ │ ├── export-tasks.js │ │ │ └── gulp-prettier-eslint.js │ │ └── tasks │ │ │ ├── build-preview-pages.js │ │ │ ├── build.js │ │ │ ├── format.js │ │ │ ├── index.js │ │ │ ├── lint-css.js │ │ │ ├── lint-js.js │ │ │ ├── pack.js │ │ │ ├── remove.js │ │ │ └── serve.js │ ├── gulpfile.js │ ├── index.js │ ├── package.json │ ├── preview-src │ │ ├── 404.adoc │ │ ├── index.adoc │ │ ├── multirepo-ssg.svg │ │ └── ui-model.yml │ └── src │ │ ├── css │ │ ├── base.css │ │ ├── body.css │ │ ├── breadcrumbs.css │ │ ├── custom.css │ │ ├── doc.css │ │ ├── footer.css │ │ ├── header.css │ │ ├── highlight.css │ │ ├── main.css │ │ ├── nav.css │ │ ├── page-versions.css │ │ ├── pagination.css │ │ ├── print.css │ │ ├── site.css │ │ ├── toc.css │ │ ├── toolbar.css │ │ ├── typeface-roboto-mono.css │ │ ├── typeface-roboto.css │ │ ├── vars.css │ │ └── vendor │ │ │ └── swagger-ui.css │ │ ├── helpers │ │ ├── and.js │ │ ├── detag.js │ │ ├── eq.js │ │ ├── increment.js │ │ ├── ne.js │ │ ├── not.js │ │ ├── or.js │ │ ├── relativize.js │ │ └── year.js │ │ ├── img │ │ ├── back.svg │ │ ├── caret.svg │ │ ├── chat.svg │ │ ├── chevron.svg │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── github-mark-white.svg │ │ ├── home-o.svg │ │ ├── home.svg │ │ ├── menu.svg │ │ └── octicons-16.svg │ │ ├── js │ │ ├── 01-nav.js │ │ ├── 02-on-this-page.js │ │ ├── 03-fragment-jumper.js │ │ ├── 04-page-versions.js │ │ ├── 05-mobile-navbar.js │ │ ├── 06-copy-to-clipboard.js │ │ └── vendor │ │ │ ├── highlight.bundle.js │ │ │ └── swagger-ui.min.js │ │ ├── layouts │ │ ├── 404.hbs │ │ └── default.hbs │ │ └── partials │ │ ├── article-404.hbs │ │ ├── article.hbs │ │ ├── body.hbs │ │ ├── breadcrumbs.hbs │ │ ├── edit-this-page.hbs │ │ ├── footer-content.hbs │ │ ├── footer-scripts.hbs │ │ ├── footer.hbs │ │ ├── head-icons.hbs │ │ ├── head-info.hbs │ │ ├── head-meta.hbs │ │ ├── head-prelude.hbs │ │ ├── head-scripts.hbs │ │ ├── head-styles.hbs │ │ ├── head-title.hbs │ │ ├── head.hbs │ │ ├── header-content.hbs │ │ ├── header-scripts.hbs │ │ ├── header.hbs │ │ ├── main.hbs │ │ ├── nav-explore.hbs │ │ ├── nav-menu.hbs │ │ ├── nav-toggle.hbs │ │ ├── nav-tree.hbs │ │ ├── nav.hbs │ │ ├── page-versions.hbs │ │ ├── pagination.hbs │ │ ├── toc.hbs │ │ └── toolbar.hbs ├── docs-site │ ├── antora-playbook.yml │ └── package.json ├── generate.bash ├── local-generation.ps1 ├── shapes │ ├── 2024.01 │ │ └── handle_imports_and_namespaces.adoc │ ├── 2025.01 │ │ ├── images │ │ │ └── improve_support_for_libraries_in_the_explorer_01.png │ │ └── improve_support_for_libraries_in_the_explorer.adoc │ ├── 2025.04 │ │ ├── add_support_for_library_publication.adoc │ │ └── images │ │ │ ├── add_support_for_library_publication_01.png │ │ │ ├── add_support_for_library_publication_02.png │ │ │ └── add_support_for_library_publication_03.png │ ├── 2025.06 │ │ ├── add_diagram_tool_to_duplicate_nodes.adoc │ │ ├── add_duplicate_object_action_for_sysml.adoc │ │ ├── add_support_for_viewusages.adoc │ │ ├── diagrams_on_view_usages.adoc │ │ ├── display_view_usages_in_diagrams.adoc │ │ ├── images │ │ │ ├── diagram_element_manage_visibility_view_frame.png │ │ │ ├── diagram_element_showhide_view_frame.png │ │ │ ├── diagram_element_view_as_menu.png │ │ │ ├── explorer_view_usage.png │ │ │ ├── new_object_menu_view_usage.png │ │ │ └── new_representation_menu.png │ │ └── manage_update_of_view_usages_in_diagrams.adoc │ ├── 2025.12 │ │ ├── display_inherited_ports_as_border_nodes.adoc │ │ └── images │ │ │ ├── inherited_port_as_border_node.png │ │ │ └── inherited_port_as_border_node_after_connection.png │ └── 2026.6.1 │ │ └── customize_elasticsearch_index_to_work_with_sysml.adoc ├── styles │ ├── Google │ │ ├── AMPM.yml │ │ ├── Acronyms.yml │ │ ├── Colons.yml │ │ ├── Contractions.yml │ │ ├── DateFormat.yml │ │ ├── Ellipses.yml │ │ ├── EmDash.yml │ │ ├── Exclamation.yml │ │ ├── FirstPerson.yml │ │ ├── Gender.yml │ │ ├── GenderBias.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Latin.yml │ │ ├── LyHyphens.yml │ │ ├── OptionalPlurals.yml │ │ ├── Ordinal.yml │ │ ├── OxfordComma.yml │ │ ├── Parens.yml │ │ ├── Passive.yml │ │ ├── Periods.yml │ │ ├── Quotes.yml │ │ ├── Ranges.yml │ │ ├── Semicolons.yml │ │ ├── Slang.yml │ │ ├── Spacing.yml │ │ ├── Spelling.yml │ │ ├── Units.yml │ │ ├── We.yml │ │ ├── Will.yml │ │ ├── WordList.yml │ │ ├── meta.json │ │ └── vocab.txt │ ├── Joblint │ │ ├── Acronyms.yml │ │ ├── Benefits.yml │ │ ├── Bro.yml │ │ ├── Competitive.yml │ │ ├── Derogatory.yml │ │ ├── DevEnv.yml │ │ ├── DumbTitles.yml │ │ ├── Gendered.yml │ │ ├── Hair.yml │ │ ├── LegacyTech.yml │ │ ├── Meritocracy.yml │ │ ├── Profanity.yml │ │ ├── README.md │ │ ├── Reassure.yml │ │ ├── Sexualised.yml │ │ ├── Starter.yml │ │ ├── TechTerms.yml │ │ ├── Visionary.yml │ │ └── meta.json │ ├── Microsoft │ │ ├── AMPM.yml │ │ ├── Accessibility.yml │ │ ├── Acronyms.yml │ │ ├── Adverbs.yml │ │ ├── Auto.yml │ │ ├── Avoid.yml │ │ ├── Contractions.yml │ │ ├── Dashes.yml │ │ ├── DateFormat.yml │ │ ├── DateNumbers.yml │ │ ├── DateOrder.yml │ │ ├── Ellipses.yml │ │ ├── FirstPerson.yml │ │ ├── Foreign.yml │ │ ├── Gender.yml │ │ ├── GenderBias.yml │ │ ├── GeneralURL.yml │ │ ├── HeadingAcronyms.yml │ │ ├── HeadingColons.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Hyphens.yml │ │ ├── Negative.yml │ │ ├── Ordinal.yml │ │ ├── OxfordComma.yml │ │ ├── Passive.yml │ │ ├── Percentages.yml │ │ ├── Plurals.yml │ │ ├── Quotes.yml │ │ ├── RangeTime.yml │ │ ├── Semicolon.yml │ │ ├── SentenceLength.yml │ │ ├── Spacing.yml │ │ ├── Suspended.yml │ │ ├── Terms.yml │ │ ├── URLFormat.yml │ │ ├── Units.yml │ │ ├── Vocab.yml │ │ ├── We.yml │ │ ├── Wordiness.yml │ │ └── meta.json │ ├── Readability │ │ ├── AutomatedReadability.yml │ │ ├── ColemanLiau.yml │ │ ├── FleschKincaid.yml │ │ ├── FleschReadingEase.yml │ │ ├── GunningFog.yml │ │ ├── LIX.yml │ │ ├── SMOG.yml │ │ └── meta.json │ ├── RedHat │ │ ├── Abbreviations.yml │ │ ├── CaseSensitiveTerms.yml │ │ ├── Conjunctions.yml │ │ ├── ConsciousLanguage.yml │ │ ├── Contractions.yml │ │ ├── Definitions.yml │ │ ├── DoNotUseTerms.yml │ │ ├── Ellipses.yml │ │ ├── EmDash.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Hyphens.yml │ │ ├── MergeConflictMarkers.yml │ │ ├── OxfordComma.yml │ │ ├── PascalCamelCase.yml │ │ ├── PassiveVoice.yml │ │ ├── ProductCentricWriting.yml │ │ ├── README-IBM.adoc │ │ ├── README-proselint.md │ │ ├── README-write-good.md │ │ ├── ReadabilityGrade.yml │ │ ├── ReleaseNotes.yml │ │ ├── RepeatedWords.yml │ │ ├── SelfReferentialText.yml │ │ ├── SentenceLength.yml │ │ ├── SimpleWords.yml │ │ ├── Slash.yml │ │ ├── SmartQuotes.yml │ │ ├── Spacing.yml │ │ ├── Spelling.yml │ │ ├── Symbols.yml │ │ ├── TermsErrors.yml │ │ ├── TermsSuggestions.yml │ │ ├── TermsWarnings.yml │ │ ├── UserReplacedValues.yml │ │ ├── collate-output.tmpl │ │ └── meta.json │ ├── alex │ │ ├── Ablist.yml │ │ ├── Condescending.yml │ │ ├── Gendered.yml │ │ ├── LGBTQ.yml │ │ ├── Press.yml │ │ ├── ProfanityLikely.yml │ │ ├── ProfanityMaybe.yml │ │ ├── ProfanityUnlikely.yml │ │ ├── README.md │ │ ├── Race.yml │ │ ├── Suicide.yml │ │ └── meta.json │ ├── proselint │ │ ├── Airlinese.yml │ │ ├── AnimalLabels.yml │ │ ├── Annotations.yml │ │ ├── Apologizing.yml │ │ ├── Archaisms.yml │ │ ├── But.yml │ │ ├── Cliches.yml │ │ ├── CorporateSpeak.yml │ │ ├── Currency.yml │ │ ├── Cursing.yml │ │ ├── DateCase.yml │ │ ├── DateMidnight.yml │ │ ├── DateRedundancy.yml │ │ ├── DateSpacing.yml │ │ ├── DenizenLabels.yml │ │ ├── Diacritical.yml │ │ ├── GenderBias.yml │ │ ├── GroupTerms.yml │ │ ├── Hedging.yml │ │ ├── Hyperbole.yml │ │ ├── Jargon.yml │ │ ├── LGBTOffensive.yml │ │ ├── LGBTTerms.yml │ │ ├── Malapropisms.yml │ │ ├── Needless.yml │ │ ├── Nonwords.yml │ │ ├── Oxymorons.yml │ │ ├── P-Value.yml │ │ ├── RASSyndrome.yml │ │ ├── README.md │ │ ├── Skunked.yml │ │ ├── Spelling.yml │ │ ├── Typography.yml │ │ ├── Uncomparables.yml │ │ ├── Very.yml │ │ └── meta.json │ └── write-good │ │ ├── Cliches.yml │ │ ├── E-Prime.yml │ │ ├── Illusions.yml │ │ ├── Passive.yml │ │ ├── README.md │ │ ├── So.yml │ │ ├── ThereIs.yml │ │ ├── TooWordy.yml │ │ ├── Weasel.yml │ │ └── meta.json └── sysml-import │ ├── Syson-DeveloperGuide.adoc │ ├── Syson-UserGuide.adoc │ └── assets │ ├── ASTTransformer.drawio.svg │ └── UploadFileProcess.drawio.svg ├── docker-compose.yml ├── frontend ├── syson-components │ ├── .prettierrc │ ├── package.json │ ├── src │ │ ├── extensions │ │ │ ├── InsertTextualSysMLv2MenuContribution.tsx │ │ │ ├── InsertTextualSysMLv2Modal.tsx │ │ │ ├── InsertTextualSysMLv2Modal.types.ts │ │ │ ├── NewObjectAsTextDocumentReport.tsx │ │ │ ├── NewObjectAsTextDocumentReport.types.ts │ │ │ ├── ShowHideDiagramsIcons.tsx │ │ │ ├── ShowHideDiagramsIcons.types.ts │ │ │ ├── ShowHideDiagramsInheritedMembers.tsx │ │ │ ├── ShowHideDiagramsInheritedMembers.types.ts │ │ │ ├── ShowHideDiagramsInheritedMembersFromStandardLibraries.tsx │ │ │ ├── ShowHideDiagramsInheritedMembersFromStandardLibraries.types.ts │ │ │ ├── SysONDiagramPanelMenu.tsx │ │ │ ├── SysONExtensionRegistryMergeStrategy.ts │ │ │ ├── navigationBarMenu │ │ │ │ └── SysONNavigationBarMenuIcon.tsx │ │ │ ├── omnibox │ │ │ │ ├── PublishProjectSysMLContentsAsLibraryCommand.tsx │ │ │ │ └── PublishProjectSysMLContentsAsLibraryCommand.types.ts │ │ │ ├── registry │ │ │ │ ├── SysONExtensionRegistry.ts │ │ │ │ └── SysONNodeTypeRegistry.tsx │ │ │ ├── requirementsTable │ │ │ │ ├── CreateRequirementMenuEntry.tsx │ │ │ │ ├── ExposeRequirementsMenuEntry.tsx │ │ │ │ ├── useCreateRequirement.ts │ │ │ │ ├── useCreateRequirement.types.ts │ │ │ │ ├── useExposeRequirements.ts │ │ │ │ └── useExposeRequirements.types.ts │ │ │ ├── useInsertTextualSysML.v2types.ts │ │ │ ├── useInsertTextualSysMLv2.ts │ │ │ ├── useShowDiagramsIcons.ts │ │ │ ├── useShowDiagramsIcons.types.ts │ │ │ ├── useShowDiagramsInheritedMembers.ts │ │ │ ├── useShowDiagramsInheritedMembers.types.ts │ │ │ ├── useShowDiagramsInheritedMembersFromStandardLibraries.ts │ │ │ └── useShowDiagramsInheritedMembersFromStandardLibraries.types.ts │ │ ├── index.ts │ │ └── nodes │ │ │ ├── SysMLNodesDocumentTransform.ts │ │ │ ├── imported_package │ │ │ ├── SysMLImportedPackageNode.tsx │ │ │ ├── SysMLImportedPackageNode.types.ts │ │ │ ├── SysMLImportedPackageNodeConverter.ts │ │ │ ├── SysMLImportedPackageNodeLayoutHandler.ts │ │ │ ├── SysMLImportedPackageNodePaletteAppearanceSection.tsx │ │ │ ├── SysMLImportedPackageNodePaletteAppearanceSection.types.ts │ │ │ ├── SysMLImportedPackageNodePart.tsx │ │ │ ├── SysMLImportedPackageNodePart.types.ts │ │ │ ├── useUpdateSysMLImportedPackageNodeAppearance.ts │ │ │ └── useUpdateSysMLImportedPackageNodeAppearance.types.ts │ │ │ ├── note │ │ │ ├── SysMLNoteNode.tsx │ │ │ ├── SysMLNoteNode.types.ts │ │ │ ├── SysMLNoteNodeConverter.ts │ │ │ ├── SysMLNoteNodeLayoutHandler.ts │ │ │ ├── SysMLNoteNodePaletteAppearanceSection.tsx │ │ │ ├── SysMLNoteNodePaletteAppearanceSection.types.ts │ │ │ ├── SysMLNoteNodePart.tsx │ │ │ ├── SysMLNoteNodePart.types.ts │ │ │ ├── useUpdateSysMLNoteNodeAppearance.ts │ │ │ └── useUpdateSysMLNoteNodeAppearance.types.ts │ │ │ ├── package │ │ │ ├── SysMLPackageNode.tsx │ │ │ ├── SysMLPackageNode.types.ts │ │ │ ├── SysMLPackageNodeConverter.ts │ │ │ ├── SysMLPackageNodeLayoutHandler.ts │ │ │ ├── SysMLPackageNodePaletteAppearanceSection.tsx │ │ │ ├── SysMLPackageNodePaletteAppearanceSection.types.ts │ │ │ ├── SysMLPackageNodePart.tsx │ │ │ ├── SysMLPackageNodePart.types.ts │ │ │ ├── useUpdateSysMLPackageNodeAppearance.ts │ │ │ └── useUpdateSysMLPackageNodeAppearance.types.ts │ │ │ └── view_frame │ │ │ ├── SysMLViewFrameNode.tsx │ │ │ ├── SysMLViewFrameNode.types.ts │ │ │ ├── SysMLViewFrameNodeConverter.ts │ │ │ ├── SysMLViewFrameNodeLayoutHandler.ts │ │ │ ├── SysMLViewFrameNodePaletteAppearanceSection.tsx │ │ │ ├── SysMLViewFrameNodePaletteAppearanceSection.types.ts │ │ │ ├── SysMLViewFrameNodePart.tsx │ │ │ ├── SysMLViewFrameNodePart.types.ts │ │ │ ├── useUpdateSysMLViewFrameNodeAppearance.ts │ │ │ └── useUpdateSysMLViewFrameNodeAppearance.types.ts │ ├── tsconfig.json │ └── vite.config.js └── syson │ ├── .env.development │ ├── .prettierrc │ ├── README.adoc │ ├── index.html │ ├── package.json │ ├── public │ ├── favicon.png │ └── favicon.svg │ ├── src │ ├── ReactFlow.css │ ├── core │ │ ├── SysONIcon.tsx │ │ └── URL.ts │ ├── extensions │ │ ├── SysONFooter.tsx │ │ └── SysONNavigationBarIcon.tsx │ ├── fonts.css │ ├── fonts │ │ └── Lato │ │ │ ├── Lato-Black.ttf │ │ │ ├── Lato-BlackItalic.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-BoldItalic.ttf │ │ │ ├── Lato-Italic.ttf │ │ │ ├── Lato-Light.ttf │ │ │ ├── Lato-LightItalic.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato-Thin.ttf │ │ │ ├── Lato-ThinItalic.ttf │ │ │ └── OFL.txt │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reset.css │ ├── theme │ │ └── sysonTheme.ts │ ├── variables.css │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.js ├── integration-tests-cypress ├── .eslintrc.cjs ├── .prettierrc ├── .vscode │ └── settings.json ├── cypress-dev.config.ts ├── cypress.config.ts ├── cypress │ ├── cypress.d.ts │ ├── e2e │ │ └── project │ │ │ ├── details │ │ │ └── details.cy.ts │ │ │ ├── diagrams │ │ │ ├── diagramCreationTests.cy.ts │ │ │ └── general-view │ │ │ │ ├── addExistingElements.cy.ts │ │ │ │ ├── diagramPanelTests.cy.ts │ │ │ │ ├── directEditTests.cy.ts │ │ │ │ ├── dropFromExplorer.cy.ts │ │ │ │ └── nodeCreationTests.cy.ts │ │ │ └── explorer │ │ │ ├── insertTextualSysMLv2Tests.cy.ts │ │ │ └── semanticElementCreationTests.cy.ts │ ├── pages │ │ ├── Project.ts │ │ └── Projects.ts │ ├── support │ │ ├── e2e.ts │ │ ├── reactFlowCommands.js │ │ ├── server │ │ │ ├── createDocumentCommand.ts │ │ │ ├── createDocumentCommand.types.ts │ │ │ ├── createProjectCommand.ts │ │ │ ├── createProjectCommand.types.ts │ │ │ ├── createProjectFromTemplateCommand.ts │ │ │ ├── createProjectFromTemplateCommand.types.ts │ │ │ ├── deleteProjectCommand.ts │ │ │ ├── deleteProjectCommand.types.ts │ │ │ ├── getCurrentEditingContextId.ts │ │ │ ├── getCurrentEditingContextId.types.ts │ │ │ └── graphql.types.ts │ │ ├── serverCommands.js │ │ └── testIdCommands.ts │ ├── usecases │ │ ├── Batmobile.ts │ │ ├── Batmobile.types.ts │ │ ├── SysMLv2.ts │ │ └── SysMLv2.types.ts │ └── workbench │ │ ├── Details.ts │ │ ├── Diagram.ts │ │ ├── Explorer.ts │ │ └── Workbench.ts ├── package-lock.json ├── package.json └── tsconfig.json ├── integration-tests-playwright ├── .eslintrc.cjs ├── .prettierrc ├── package-lock.json ├── package.json ├── playwright.config.ts ├── playwright │ ├── e2e │ │ └── diagram.spec.ts │ ├── helpers │ │ ├── PlaywrightDetails.ts │ │ ├── PlaywrightEdge.ts │ │ ├── PlaywrightExplorer.ts │ │ ├── PlaywrightLabel.ts │ │ ├── PlaywrightNode.ts │ │ ├── PlaywrightNodeLabel.ts │ │ ├── PlaywrightProject.ts │ │ └── PlaywrightWorkbench.ts │ └── resources │ │ └── SysMLv2WithInterconnectionView.sysml └── tsconfig.json ├── package.json ├── pom.xml ├── scripts ├── bump-version ├── check-changelog.js ├── check-copyright.js ├── check-coverage.jsh ├── check-frontend-dependencies.js ├── check-labels.js ├── check-milestone.js ├── check-ts.js ├── prepare-release.js ├── restart-postgresql.sh └── update-sirius-web.js ├── settings.xml └── turbo.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/doc-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.github/workflows/doc-gen.yml -------------------------------------------------------------------------------- /.github/workflows/generate-maven-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.github/workflows/generate-maven-sbom.yml -------------------------------------------------------------------------------- /.github/workflows/generate-npm-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.github/workflows/generate-npm-sbom.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/CHANGELOG.adoc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/LICENSE-LGPL -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend/application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-application-configuration/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application-configuration/.checkstyle -------------------------------------------------------------------------------- /backend/application/syson-application-configuration/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application-configuration/.classpath -------------------------------------------------------------------------------- /backend/application/syson-application-configuration/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application-configuration/.project -------------------------------------------------------------------------------- /backend/application/syson-application-configuration/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/application/syson-application-configuration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application-configuration/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-application/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/.checkstyle -------------------------------------------------------------------------------- /backend/application/syson-application/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/.classpath -------------------------------------------------------------------------------- /backend/application/syson-application/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/.project -------------------------------------------------------------------------------- /backend/application/syson-application/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/application/syson-application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/Dockerfile -------------------------------------------------------------------------------- /backend/application/syson-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/README.md -------------------------------------------------------------------------------- /backend/application/syson-application/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/docker-compose.yml -------------------------------------------------------------------------------- /backend/application/syson-application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-application/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-frontend/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-frontend/.classpath -------------------------------------------------------------------------------- /backend/application/syson-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-frontend/.gitignore -------------------------------------------------------------------------------- /backend/application/syson-frontend/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-frontend/.project -------------------------------------------------------------------------------- /backend/application/syson-frontend/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/application/syson-frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-frontend/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-frontend/src/main/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/application/syson-frontend/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/application/syson-sysml-export/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-export/.checkstyle -------------------------------------------------------------------------------- /backend/application/syson-sysml-export/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-export/.classpath -------------------------------------------------------------------------------- /backend/application/syson-sysml-export/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-export/.project -------------------------------------------------------------------------------- /backend/application/syson-sysml-export/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/application/syson-sysml-export/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-export/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-sysml-export/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-import/.checkstyle -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-import/.classpath -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-import/.project -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-import/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/src/test/resources/ASTTransformerTest/convertNamespaceImportTest/namespace.sysml: -------------------------------------------------------------------------------- 1 | package ScalarValues { 2 | } 3 | -------------------------------------------------------------------------------- /backend/application/syson-sysml-import/src/test/resources/ASTTransformerTest/convertProjectWithErrors/proxyResolutionError.sysml: -------------------------------------------------------------------------------- 1 | package p1 { 2 | part p : FakeType; 3 | } -------------------------------------------------------------------------------- /backend/application/syson-sysml-validation/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-validation/.checkstyle -------------------------------------------------------------------------------- /backend/application/syson-sysml-validation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-validation/.classpath -------------------------------------------------------------------------------- /backend/application/syson-sysml-validation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-validation/.project -------------------------------------------------------------------------------- /backend/application/syson-sysml-validation/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/application/syson-sysml-validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/application/syson-sysml-validation/pom.xml -------------------------------------------------------------------------------- /backend/application/syson-sysml-validation/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/metamodel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/pom.xml -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel-edit/.gitignore: -------------------------------------------------------------------------------- 1 | /build.properties 2 | /plugin.xml 3 | -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel-edit/src/test/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-siriusweb-customnodes-metamodel/.classpath -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel/.gitignore: -------------------------------------------------------------------------------- 1 | /build.properties 2 | /plugin.xml 3 | -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-siriusweb-customnodes-metamodel/.project -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-siriusweb-customnodes-metamodel/pom.xml -------------------------------------------------------------------------------- /backend/metamodel/syson-siriusweb-customnodes-metamodel/src/test/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel-edit/.checkstyle -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel-edit/.classpath -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/.gitignore: -------------------------------------------------------------------------------- 1 | /build.properties 2 | /plugin.xml 3 | -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel-edit/.project -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel-edit/pom.xml -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel-edit/src/test/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel/.checkstyle -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel/.classpath -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel/.project -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/metamodel/syson-sysml-metamodel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/metamodel/syson-sysml-metamodel/pom.xml -------------------------------------------------------------------------------- /backend/releng/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/pom.xml -------------------------------------------------------------------------------- /backend/releng/syson-resources/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-resources/.project -------------------------------------------------------------------------------- /backend/releng/syson-resources/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /backend/releng/syson-resources/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-resources/README.adoc -------------------------------------------------------------------------------- /backend/releng/syson-resources/editor/CleanupProfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-resources/editor/CleanupProfile.xml -------------------------------------------------------------------------------- /backend/releng/syson-resources/editor/JavaFormatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-resources/editor/JavaFormatter.xml -------------------------------------------------------------------------------- /backend/releng/syson-resources/editor/codetemplates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-resources/editor/codetemplates.xml -------------------------------------------------------------------------------- /backend/releng/syson-resources/editor/syson.importorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-resources/editor/syson.importorder -------------------------------------------------------------------------------- /backend/releng/syson-test-coverage/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-test-coverage/.project -------------------------------------------------------------------------------- /backend/releng/syson-test-coverage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/releng/syson-test-coverage/pom.xml -------------------------------------------------------------------------------- /backend/services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-diagram-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-diagram-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-diagram-services/.project -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-diagram-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-diagram-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-direct-edit-grammar/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-direct-edit-grammar/.classpath -------------------------------------------------------------------------------- /backend/services/syson-direct-edit-grammar/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-direct-edit-grammar/.project -------------------------------------------------------------------------------- /backend/services/syson-direct-edit-grammar/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-direct-edit-grammar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-direct-edit-grammar/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-form-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-form-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-form-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-form-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-form-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-form-services/.project -------------------------------------------------------------------------------- /backend/services/syson-form-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-form-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-form-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-form-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-form-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-model-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-model-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-model-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-model-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-model-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-model-services/.project -------------------------------------------------------------------------------- /backend/services/syson-model-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-model-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-model-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-model-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-model-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-representation-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-representation-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-representation-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-representation-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-representation-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-representation-services/.project -------------------------------------------------------------------------------- /backend/services/syson-representation-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-representation-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-representation-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-representation-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-representation-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-services/.project -------------------------------------------------------------------------------- /backend/services/syson-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-services/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-services/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /backend/services/syson-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-services/src/test/resources/testImport.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-services/src/test/resources/testImport.xmi -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-metamodel-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-metamodel-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-metamodel-services/.project -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-metamodel-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-sysml-metamodel-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-sysml-rest-api-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-rest-api-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-sysml-rest-api-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-rest-api-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-sysml-rest-api-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-rest-api-services/.project -------------------------------------------------------------------------------- /backend/services/syson-sysml-rest-api-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-sysml-rest-api-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-sysml-rest-api-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-sysml-rest-api-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-table-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-table-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-table-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-table-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-table-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-table-services/.project -------------------------------------------------------------------------------- /backend/services/syson-table-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-table-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-table-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-table-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-table-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-tree-services/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-tree-services/.checkstyle -------------------------------------------------------------------------------- /backend/services/syson-tree-services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-tree-services/.classpath -------------------------------------------------------------------------------- /backend/services/syson-tree-services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-tree-services/.project -------------------------------------------------------------------------------- /backend/services/syson-tree-services/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/services/syson-tree-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/services/syson-tree-services/pom.xml -------------------------------------------------------------------------------- /backend/services/syson-tree-services/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/services/syson-tree-services/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/pom.xml -------------------------------------------------------------------------------- /backend/tests/syson-tests/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.checkstyle -------------------------------------------------------------------------------- /backend/tests/syson-tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.classpath -------------------------------------------------------------------------------- /backend/tests/syson-tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.project -------------------------------------------------------------------------------- /backend/tests/syson-tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/tests/syson-tests/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /backend/tests/syson-tests/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /backend/tests/syson-tests/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /backend/tests/syson-tests/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /backend/tests/syson-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/tests/syson-tests/pom.xml -------------------------------------------------------------------------------- /backend/tests/syson-tests/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/views/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/pom.xml -------------------------------------------------------------------------------- /backend/views/syson-common-view/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-common-view/.checkstyle -------------------------------------------------------------------------------- /backend/views/syson-common-view/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-common-view/.classpath -------------------------------------------------------------------------------- /backend/views/syson-common-view/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-common-view/.project -------------------------------------------------------------------------------- /backend/views/syson-common-view/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-common-view/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /backend/views/syson-common-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-common-view/pom.xml -------------------------------------------------------------------------------- /backend/views/syson-common-view/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/views/syson-diagram-common-view/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-common-view/.checkstyle -------------------------------------------------------------------------------- /backend/views/syson-diagram-common-view/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-common-view/.classpath -------------------------------------------------------------------------------- /backend/views/syson-diagram-common-view/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-common-view/.project -------------------------------------------------------------------------------- /backend/views/syson-diagram-common-view/DescriptionsId.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-common-view/DescriptionsId.txt -------------------------------------------------------------------------------- /backend/views/syson-diagram-common-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-common-view/pom.xml -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-tests/.checkstyle -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-tests/.classpath -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-tests/.project -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-diagram-tests/pom.xml -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/views/syson-diagram-tests/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-standard-diagrams-view/.checkstyle -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-standard-diagrams-view/.classpath -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-standard-diagrams-view/.project -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-standard-diagrams-view/pom.xml -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/views/syson-standard-diagrams-view/src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/views/syson-table-requirements-view/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-table-requirements-view/.checkstyle -------------------------------------------------------------------------------- /backend/views/syson-table-requirements-view/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-table-requirements-view/.classpath -------------------------------------------------------------------------------- /backend/views/syson-table-requirements-view/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-table-requirements-view/.project -------------------------------------------------------------------------------- /backend/views/syson-table-requirements-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-table-requirements-view/pom.xml -------------------------------------------------------------------------------- /backend/views/syson-tree-explorer-view/.checkstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-tree-explorer-view/.checkstyle -------------------------------------------------------------------------------- /backend/views/syson-tree-explorer-view/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-tree-explorer-view/.classpath -------------------------------------------------------------------------------- /backend/views/syson-tree-explorer-view/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-tree-explorer-view/.project -------------------------------------------------------------------------------- /backend/views/syson-tree-explorer-view/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Sep 24 15:04:19 CEST 2007 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /backend/views/syson-tree-explorer-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/backend/views/syson-tree-explorer-view/pom.xml -------------------------------------------------------------------------------- /doc/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/.vale.ini -------------------------------------------------------------------------------- /doc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/Dockerfile -------------------------------------------------------------------------------- /doc/adrs/000_adopt_adrs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/adrs/000_adopt_adrs.adoc -------------------------------------------------------------------------------- /doc/adrs/001_support_direct_edit_in diagrams.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/adrs/001_support_direct_edit_in diagrams.adoc -------------------------------------------------------------------------------- /doc/adrs/002_services_organization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/adrs/002_services_organization.adoc -------------------------------------------------------------------------------- /doc/content/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/README -------------------------------------------------------------------------------- /doc/content/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/antora.yml -------------------------------------------------------------------------------- /doc/content/modules/ROOT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/README -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/README -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/attachments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/attachments/README -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/README -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/account_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/account_tree.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/best.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/best.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/cycle.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/diversity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/diversity.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/editor_choice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/editor_choice.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/explore.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/folder.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/footprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/footprint.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/forum.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/globe.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/hub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/hub.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/icon_syson_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/icon_syson_black.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/key-features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/key-features.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/new_releases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/new_releases.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/overview.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/person_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/person_play.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/resources.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/settings_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/settings_heart.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/sprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/sprint.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/syson-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/syson-overview.png -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/tap_app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/tap_app.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/travel_explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/travel_explore.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/assets/images/volunteer_activism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/assets/images/volunteer_activism.svg -------------------------------------------------------------------------------- /doc/content/modules/ROOT/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/examples/README -------------------------------------------------------------------------------- /doc/content/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/README -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/faq.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/faq.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/features.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/get-started.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/get-started.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/help.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/help.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/integration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/integration.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/introduction.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/reference.adoc: -------------------------------------------------------------------------------- 1 | = Reference documentations 2 | 3 | xref:user-manual:index.adoc 4 | -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/release-notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/release-notes.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/security-policy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/security-policy.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/pages/user-interface-overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/pages/user-interface-overview.adoc -------------------------------------------------------------------------------- /doc/content/modules/ROOT/partials/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/ROOT/partials/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/assets/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/assets/attachments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/assets/attachments/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/assets/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/assets/images/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/create_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/create_project.py -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/fetch_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/fetch_commits.py -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/fetch_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/fetch_elements.py -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/fetch_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/fetch_projects.py -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/get_owned_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/get_owned_elements.py -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/examples/init_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/examples/init_api.py -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/pages/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/pages/api/api-cookbook.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/pages/api/api-cookbook.adoc -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/pages/api/api-details.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/pages/api/api-details.adoc -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/pages/api/api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/pages/api/api.adoc -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/pages/extend.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/pages/extend.adoc -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/pages/index.adoc -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/partials/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/partials/README -------------------------------------------------------------------------------- /doc/content/modules/developer-guide/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/developer-guide/partials/nav.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/assets/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/assets/attachments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/assets/attachments/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/assets/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/assets/images/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/assets/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/assets/images/download.png -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/examples/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/anti-virus.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/anti-virus.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/architecture.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/architecture.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/how-tos/https.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/how-tos/https.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/how-tos/install.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/how-tos/install.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/index.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/requirements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/requirements.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/pages/troubleshooting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/pages/troubleshooting.adoc -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/partials/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/partials/README -------------------------------------------------------------------------------- /doc/content/modules/installation-guide/partials/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/installation-guide/partials/nav.adoc -------------------------------------------------------------------------------- /doc/content/modules/product-legal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/README -------------------------------------------------------------------------------- /doc/content/modules/product-legal/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/assets/README -------------------------------------------------------------------------------- /doc/content/modules/product-legal/assets/attachments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/assets/attachments/README -------------------------------------------------------------------------------- /doc/content/modules/product-legal/assets/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/assets/images/README -------------------------------------------------------------------------------- /doc/content/modules/product-legal/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/examples/README -------------------------------------------------------------------------------- /doc/content/modules/product-legal/examples/eplv2-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/examples/eplv2-license.txt -------------------------------------------------------------------------------- /doc/content/modules/product-legal/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/pages/README -------------------------------------------------------------------------------- /doc/content/modules/product-legal/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/pages/index.adoc -------------------------------------------------------------------------------- /doc/content/modules/product-legal/partials/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/product-legal/partials/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/attachments/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/attachments/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/FeatureValueEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/FeatureValueEdge.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/ItemParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/ItemParameters.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/developer_guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/developer_guide.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/editor-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/editor-editor.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/editor-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/editor-toolbar.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/editor.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/editor_choice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/editor_choice.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/explore.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/footprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/footprint.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/forum.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/gv-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/gv-overview.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/gv-package-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/gv-package-node.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/gv-part-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/gv-part-node.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/gv-partDef-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/gv-partDef-node.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/hands-on-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/hands-on-upload.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/homepage-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/homepage-toolbar.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/homepage.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/icon_syson_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/icon_syson_black.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/img.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/overview.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/query-view-self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/query-view-self.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/resources.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/settings_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/settings_heart.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/support_agent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/support_agent.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/syson-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/syson-overview.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/travel_explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/travel_explore.svg -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/tutorial-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/tutorial-result.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/assets/images/view-usage-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/assets/images/view-usage-nodes.png -------------------------------------------------------------------------------- /doc/content/modules/user-manual/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/examples/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/best-practices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/best-practices.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/concepts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/concepts.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/contribute.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/contribute.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/cycle.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/cycle.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/faq/faq.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/faq/faq.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/cm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/cm.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/collaboration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/collaboration.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/details.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/details.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/editor.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/editor.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/explorer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/explorer.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/features.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/general-view.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/general-view.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/homepage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/homepage.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/library-import.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/library-import.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/other-views.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/other-views.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/publication.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/publication.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/query-view.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/query-view.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/scaling-limits.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/scaling-limits.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/security.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/simulation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/simulation.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/features/validation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/features/validation.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/forum.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/forum.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/hands-on/hands-on.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/hands-on/hands-on.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/help.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/help.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/index.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/integration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/integration.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/integration/capella.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/integration/capella.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/key-features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/key-features.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2023.12.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2023.12.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2024.1.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2024.1.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2024.11.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2024.11.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2024.3.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2024.3.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2024.5.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2024.5.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2024.7.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2024.7.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2024.9.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2024.9.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2025.1.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2025.1.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2025.10.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2025.10.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2025.12.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2025.12.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2025.2.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2025.2.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2025.4.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2025.4.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/release-notes/2025.6.0.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/release-notes/2025.6.0.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/resources.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/support.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/support.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/tour.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/tour.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/updates.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/updates.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/pages/what-is.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/pages/what-is.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/README -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/feature-os.adoc: -------------------------------------------------------------------------------- 1 | 🔓 The open source {product} project includes this feature. -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/feature-usage-all.adoc: -------------------------------------------------------------------------------- 1 | 👥 This feature is available to all users. -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/help-action.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/help-action.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/homepage-action.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/homepage-action.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/intro.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/libraries-action.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/libraries-action.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/manage-drag-drop.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/manage-drag-drop.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-features.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-help.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-help.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-howtos.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-howtos.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-integration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-integration.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-intro.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-tuto.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-tuto.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-ui.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-ui.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/nav-updates.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/nav-updates.adoc -------------------------------------------------------------------------------- /doc/content/modules/user-manual/partials/projects-action.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/content/modules/user-manual/partials/projects-action.adoc -------------------------------------------------------------------------------- /doc/doc-ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/.editorconfig -------------------------------------------------------------------------------- /doc/doc-ui/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/.eslintrc -------------------------------------------------------------------------------- /doc/doc-ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /node_modules/ 3 | /public/ 4 | -------------------------------------------------------------------------------- /doc/doc-ui/.gulp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/.gulp.json -------------------------------------------------------------------------------- /doc/doc-ui/.nvmrc: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /doc/doc-ui/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/.stylelintrc -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/lib/create-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/lib/create-task.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/lib/export-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/lib/export-tasks.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/lib/gulp-prettier-eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/lib/gulp-prettier-eslint.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/build-preview-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/build-preview-pages.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/build.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/format.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/index.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/lint-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/lint-css.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/lint-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/lint-js.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/pack.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/remove.js -------------------------------------------------------------------------------- /doc/doc-ui/gulp.d/tasks/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulp.d/tasks/serve.js -------------------------------------------------------------------------------- /doc/doc-ui/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/gulpfile.js -------------------------------------------------------------------------------- /doc/doc-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/index.js -------------------------------------------------------------------------------- /doc/doc-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/package.json -------------------------------------------------------------------------------- /doc/doc-ui/preview-src/404.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/doc-ui/preview-src/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/preview-src/index.adoc -------------------------------------------------------------------------------- /doc/doc-ui/preview-src/multirepo-ssg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/preview-src/multirepo-ssg.svg -------------------------------------------------------------------------------- /doc/doc-ui/preview-src/ui-model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/preview-src/ui-model.yml -------------------------------------------------------------------------------- /doc/doc-ui/src/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/base.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/body.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/breadcrumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/breadcrumbs.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/custom.css: -------------------------------------------------------------------------------- 1 | .spacer { 2 | flex: auto; 3 | } 4 | -------------------------------------------------------------------------------- /doc/doc-ui/src/css/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/doc.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/footer.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/header.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/highlight.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/main.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/nav.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/page-versions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/page-versions.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/pagination.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/print.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/site.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/toc.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/toolbar.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/typeface-roboto-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/typeface-roboto-mono.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/typeface-roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/typeface-roboto.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/vars.css -------------------------------------------------------------------------------- /doc/doc-ui/src/css/vendor/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/css/vendor/swagger-ui.css -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/helpers/and.js -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/detag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/helpers/detag.js -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/eq.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = (a, b) => a === b 4 | -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/increment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/helpers/increment.js -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/ne.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = (a, b) => a !== b 4 | -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/not.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = (val) => !val 4 | -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/helpers/or.js -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/relativize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/helpers/relativize.js -------------------------------------------------------------------------------- /doc/doc-ui/src/helpers/year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/helpers/year.js -------------------------------------------------------------------------------- /doc/doc-ui/src/img/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/back.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/caret.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/chat.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/chevron.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/favicon.ico -------------------------------------------------------------------------------- /doc/doc-ui/src/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/favicon.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/github-mark-white.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/home-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/home-o.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/home.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/menu.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/img/octicons-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/img/octicons-16.svg -------------------------------------------------------------------------------- /doc/doc-ui/src/js/01-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/01-nav.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/02-on-this-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/02-on-this-page.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/03-fragment-jumper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/03-fragment-jumper.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/04-page-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/04-page-versions.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/05-mobile-navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/05-mobile-navbar.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/06-copy-to-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/06-copy-to-clipboard.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/vendor/highlight.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/vendor/highlight.bundle.js -------------------------------------------------------------------------------- /doc/doc-ui/src/js/vendor/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/js/vendor/swagger-ui.min.js -------------------------------------------------------------------------------- /doc/doc-ui/src/layouts/404.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/layouts/404.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/layouts/default.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/article-404.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/article-404.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/article.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/article.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/body.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/body.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/breadcrumbs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/breadcrumbs.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/edit-this-page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/edit-this-page.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/footer-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/footer-content.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/footer-scripts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/footer-scripts.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/footer.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-icons.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/head-icons.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/head-info.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-meta.hbs: -------------------------------------------------------------------------------- 1 | {{!-- Add additional meta tags here --}} 2 | -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-prelude.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/head-prelude.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-scripts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/head-scripts.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-styles.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head-title.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/head-title.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/head.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/header-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/header-content.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/header-scripts.hbs: -------------------------------------------------------------------------------- 1 | {{!-- Add header scripts here --}} 2 | -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/header.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/main.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/nav-explore.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/nav-explore.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/nav-menu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/nav-menu.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/nav-toggle.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/nav-toggle.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/nav-tree.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/nav-tree.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/nav.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/nav.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/page-versions.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/page-versions.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/pagination.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/pagination.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/toc.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/toc.hbs -------------------------------------------------------------------------------- /doc/doc-ui/src/partials/toolbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/doc-ui/src/partials/toolbar.hbs -------------------------------------------------------------------------------- /doc/docs-site/antora-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/docs-site/antora-playbook.yml -------------------------------------------------------------------------------- /doc/docs-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/docs-site/package.json -------------------------------------------------------------------------------- /doc/generate.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/generate.bash -------------------------------------------------------------------------------- /doc/local-generation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/local-generation.ps1 -------------------------------------------------------------------------------- /doc/shapes/2024.01/handle_imports_and_namespaces.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2024.01/handle_imports_and_namespaces.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.04/add_support_for_library_publication.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.04/add_support_for_library_publication.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.06/add_diagram_tool_to_duplicate_nodes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/add_diagram_tool_to_duplicate_nodes.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.06/add_duplicate_object_action_for_sysml.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/add_duplicate_object_action_for_sysml.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.06/add_support_for_viewusages.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/add_support_for_viewusages.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.06/diagrams_on_view_usages.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/diagrams_on_view_usages.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.06/display_view_usages_in_diagrams.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/display_view_usages_in_diagrams.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.06/images/diagram_element_view_as_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/images/diagram_element_view_as_menu.png -------------------------------------------------------------------------------- /doc/shapes/2025.06/images/explorer_view_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/images/explorer_view_usage.png -------------------------------------------------------------------------------- /doc/shapes/2025.06/images/new_object_menu_view_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/images/new_object_menu_view_usage.png -------------------------------------------------------------------------------- /doc/shapes/2025.06/images/new_representation_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/images/new_representation_menu.png -------------------------------------------------------------------------------- /doc/shapes/2025.06/manage_update_of_view_usages_in_diagrams.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.06/manage_update_of_view_usages_in_diagrams.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.12/display_inherited_ports_as_border_nodes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.12/display_inherited_ports_as_border_nodes.adoc -------------------------------------------------------------------------------- /doc/shapes/2025.12/images/inherited_port_as_border_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/shapes/2025.12/images/inherited_port_as_border_node.png -------------------------------------------------------------------------------- /doc/styles/Google/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/AMPM.yml -------------------------------------------------------------------------------- /doc/styles/Google/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Acronyms.yml -------------------------------------------------------------------------------- /doc/styles/Google/Colons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Colons.yml -------------------------------------------------------------------------------- /doc/styles/Google/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Contractions.yml -------------------------------------------------------------------------------- /doc/styles/Google/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/DateFormat.yml -------------------------------------------------------------------------------- /doc/styles/Google/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Ellipses.yml -------------------------------------------------------------------------------- /doc/styles/Google/EmDash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/EmDash.yml -------------------------------------------------------------------------------- /doc/styles/Google/Exclamation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Exclamation.yml -------------------------------------------------------------------------------- /doc/styles/Google/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/FirstPerson.yml -------------------------------------------------------------------------------- /doc/styles/Google/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Gender.yml -------------------------------------------------------------------------------- /doc/styles/Google/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/GenderBias.yml -------------------------------------------------------------------------------- /doc/styles/Google/HeadingPunctuation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/HeadingPunctuation.yml -------------------------------------------------------------------------------- /doc/styles/Google/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Headings.yml -------------------------------------------------------------------------------- /doc/styles/Google/Latin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Latin.yml -------------------------------------------------------------------------------- /doc/styles/Google/LyHyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/LyHyphens.yml -------------------------------------------------------------------------------- /doc/styles/Google/OptionalPlurals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/OptionalPlurals.yml -------------------------------------------------------------------------------- /doc/styles/Google/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Ordinal.yml -------------------------------------------------------------------------------- /doc/styles/Google/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/OxfordComma.yml -------------------------------------------------------------------------------- /doc/styles/Google/Parens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Parens.yml -------------------------------------------------------------------------------- /doc/styles/Google/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Passive.yml -------------------------------------------------------------------------------- /doc/styles/Google/Periods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Periods.yml -------------------------------------------------------------------------------- /doc/styles/Google/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Quotes.yml -------------------------------------------------------------------------------- /doc/styles/Google/Ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Ranges.yml -------------------------------------------------------------------------------- /doc/styles/Google/Semicolons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Semicolons.yml -------------------------------------------------------------------------------- /doc/styles/Google/Slang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Slang.yml -------------------------------------------------------------------------------- /doc/styles/Google/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Spacing.yml -------------------------------------------------------------------------------- /doc/styles/Google/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Spelling.yml -------------------------------------------------------------------------------- /doc/styles/Google/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Units.yml -------------------------------------------------------------------------------- /doc/styles/Google/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/We.yml -------------------------------------------------------------------------------- /doc/styles/Google/Will.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/Will.yml -------------------------------------------------------------------------------- /doc/styles/Google/WordList.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/WordList.yml -------------------------------------------------------------------------------- /doc/styles/Google/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Google/meta.json -------------------------------------------------------------------------------- /doc/styles/Google/vocab.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/styles/Joblint/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Acronyms.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Benefits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Benefits.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Bro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Bro.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Competitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Competitive.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Derogatory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Derogatory.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/DevEnv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/DevEnv.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/DumbTitles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/DumbTitles.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Gendered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Gendered.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Hair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Hair.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/LegacyTech.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/LegacyTech.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Meritocracy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Meritocracy.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Profanity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Profanity.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/README.md -------------------------------------------------------------------------------- /doc/styles/Joblint/Reassure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Reassure.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Sexualised.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Sexualised.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Starter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Starter.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/TechTerms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/TechTerms.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/Visionary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/Visionary.yml -------------------------------------------------------------------------------- /doc/styles/Joblint/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Joblint/meta.json -------------------------------------------------------------------------------- /doc/styles/Microsoft/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/AMPM.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Accessibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Accessibility.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Acronyms.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Adverbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Adverbs.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Auto.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Avoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Avoid.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Contractions.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Dashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Dashes.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/DateFormat.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/DateNumbers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/DateNumbers.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/DateOrder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/DateOrder.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Ellipses.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/FirstPerson.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Foreign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Foreign.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Gender.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/GenderBias.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/GeneralURL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/GeneralURL.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/HeadingAcronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/HeadingAcronyms.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/HeadingColons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/HeadingColons.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/HeadingPunctuation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/HeadingPunctuation.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Headings.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Hyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Hyphens.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Negative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Negative.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Ordinal.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/OxfordComma.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Passive.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Percentages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Percentages.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Plurals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Plurals.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Quotes.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/RangeTime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/RangeTime.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Semicolon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Semicolon.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/SentenceLength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/SentenceLength.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Spacing.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Suspended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Suspended.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Terms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Terms.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/URLFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/URLFormat.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Units.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Vocab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Vocab.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/We.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/Wordiness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/Wordiness.yml -------------------------------------------------------------------------------- /doc/styles/Microsoft/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Microsoft/meta.json -------------------------------------------------------------------------------- /doc/styles/Readability/AutomatedReadability.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/AutomatedReadability.yml -------------------------------------------------------------------------------- /doc/styles/Readability/ColemanLiau.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/ColemanLiau.yml -------------------------------------------------------------------------------- /doc/styles/Readability/FleschKincaid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/FleschKincaid.yml -------------------------------------------------------------------------------- /doc/styles/Readability/FleschReadingEase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/FleschReadingEase.yml -------------------------------------------------------------------------------- /doc/styles/Readability/GunningFog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/GunningFog.yml -------------------------------------------------------------------------------- /doc/styles/Readability/LIX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/LIX.yml -------------------------------------------------------------------------------- /doc/styles/Readability/SMOG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/SMOG.yml -------------------------------------------------------------------------------- /doc/styles/Readability/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/Readability/meta.json -------------------------------------------------------------------------------- /doc/styles/RedHat/Abbreviations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Abbreviations.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/CaseSensitiveTerms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/CaseSensitiveTerms.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Conjunctions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Conjunctions.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/ConsciousLanguage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/ConsciousLanguage.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Contractions.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Definitions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Definitions.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/DoNotUseTerms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/DoNotUseTerms.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Ellipses.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/EmDash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/EmDash.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/HeadingPunctuation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/HeadingPunctuation.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Headings.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Hyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Hyphens.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/MergeConflictMarkers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/MergeConflictMarkers.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/OxfordComma.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/PascalCamelCase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/PascalCamelCase.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/PassiveVoice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/PassiveVoice.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/ProductCentricWriting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/ProductCentricWriting.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/README-IBM.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/README-IBM.adoc -------------------------------------------------------------------------------- /doc/styles/RedHat/README-proselint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/README-proselint.md -------------------------------------------------------------------------------- /doc/styles/RedHat/README-write-good.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/README-write-good.md -------------------------------------------------------------------------------- /doc/styles/RedHat/ReadabilityGrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/ReadabilityGrade.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/ReleaseNotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/ReleaseNotes.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/RepeatedWords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/RepeatedWords.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/SelfReferentialText.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/SelfReferentialText.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/SentenceLength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/SentenceLength.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/SimpleWords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/SimpleWords.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Slash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Slash.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/SmartQuotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/SmartQuotes.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Spacing.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Spelling.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/Symbols.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/Symbols.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/TermsErrors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/TermsErrors.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/TermsSuggestions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/TermsSuggestions.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/TermsWarnings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/TermsWarnings.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/UserReplacedValues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/UserReplacedValues.yml -------------------------------------------------------------------------------- /doc/styles/RedHat/collate-output.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/collate-output.tmpl -------------------------------------------------------------------------------- /doc/styles/RedHat/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/RedHat/meta.json -------------------------------------------------------------------------------- /doc/styles/alex/Ablist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/Ablist.yml -------------------------------------------------------------------------------- /doc/styles/alex/Condescending.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/Condescending.yml -------------------------------------------------------------------------------- /doc/styles/alex/Gendered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/Gendered.yml -------------------------------------------------------------------------------- /doc/styles/alex/LGBTQ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/LGBTQ.yml -------------------------------------------------------------------------------- /doc/styles/alex/Press.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/Press.yml -------------------------------------------------------------------------------- /doc/styles/alex/ProfanityLikely.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/ProfanityLikely.yml -------------------------------------------------------------------------------- /doc/styles/alex/ProfanityMaybe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/ProfanityMaybe.yml -------------------------------------------------------------------------------- /doc/styles/alex/ProfanityUnlikely.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/ProfanityUnlikely.yml -------------------------------------------------------------------------------- /doc/styles/alex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/README.md -------------------------------------------------------------------------------- /doc/styles/alex/Race.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/Race.yml -------------------------------------------------------------------------------- /doc/styles/alex/Suicide.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/Suicide.yml -------------------------------------------------------------------------------- /doc/styles/alex/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/alex/meta.json -------------------------------------------------------------------------------- /doc/styles/proselint/Airlinese.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Airlinese.yml -------------------------------------------------------------------------------- /doc/styles/proselint/AnimalLabels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/AnimalLabels.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Annotations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Annotations.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Apologizing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Apologizing.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Archaisms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Archaisms.yml -------------------------------------------------------------------------------- /doc/styles/proselint/But.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/But.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Cliches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Cliches.yml -------------------------------------------------------------------------------- /doc/styles/proselint/CorporateSpeak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/CorporateSpeak.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Currency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Currency.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Cursing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Cursing.yml -------------------------------------------------------------------------------- /doc/styles/proselint/DateCase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/DateCase.yml -------------------------------------------------------------------------------- /doc/styles/proselint/DateMidnight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/DateMidnight.yml -------------------------------------------------------------------------------- /doc/styles/proselint/DateRedundancy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/DateRedundancy.yml -------------------------------------------------------------------------------- /doc/styles/proselint/DateSpacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/DateSpacing.yml -------------------------------------------------------------------------------- /doc/styles/proselint/DenizenLabels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/DenizenLabels.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Diacritical.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Diacritical.yml -------------------------------------------------------------------------------- /doc/styles/proselint/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/GenderBias.yml -------------------------------------------------------------------------------- /doc/styles/proselint/GroupTerms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/GroupTerms.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Hedging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Hedging.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Hyperbole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Hyperbole.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Jargon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Jargon.yml -------------------------------------------------------------------------------- /doc/styles/proselint/LGBTOffensive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/LGBTOffensive.yml -------------------------------------------------------------------------------- /doc/styles/proselint/LGBTTerms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/LGBTTerms.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Malapropisms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Malapropisms.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Needless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Needless.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Nonwords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Nonwords.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Oxymorons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Oxymorons.yml -------------------------------------------------------------------------------- /doc/styles/proselint/P-Value.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/P-Value.yml -------------------------------------------------------------------------------- /doc/styles/proselint/RASSyndrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/RASSyndrome.yml -------------------------------------------------------------------------------- /doc/styles/proselint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/README.md -------------------------------------------------------------------------------- /doc/styles/proselint/Skunked.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Skunked.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Spelling.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Typography.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Typography.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Uncomparables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Uncomparables.yml -------------------------------------------------------------------------------- /doc/styles/proselint/Very.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/Very.yml -------------------------------------------------------------------------------- /doc/styles/proselint/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/proselint/meta.json -------------------------------------------------------------------------------- /doc/styles/write-good/Cliches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/Cliches.yml -------------------------------------------------------------------------------- /doc/styles/write-good/E-Prime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/E-Prime.yml -------------------------------------------------------------------------------- /doc/styles/write-good/Illusions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/Illusions.yml -------------------------------------------------------------------------------- /doc/styles/write-good/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/Passive.yml -------------------------------------------------------------------------------- /doc/styles/write-good/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/README.md -------------------------------------------------------------------------------- /doc/styles/write-good/So.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/So.yml -------------------------------------------------------------------------------- /doc/styles/write-good/ThereIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/ThereIs.yml -------------------------------------------------------------------------------- /doc/styles/write-good/TooWordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/TooWordy.yml -------------------------------------------------------------------------------- /doc/styles/write-good/Weasel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/Weasel.yml -------------------------------------------------------------------------------- /doc/styles/write-good/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/styles/write-good/meta.json -------------------------------------------------------------------------------- /doc/sysml-import/Syson-DeveloperGuide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/sysml-import/Syson-DeveloperGuide.adoc -------------------------------------------------------------------------------- /doc/sysml-import/Syson-UserGuide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/sysml-import/Syson-UserGuide.adoc -------------------------------------------------------------------------------- /doc/sysml-import/assets/ASTTransformer.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/sysml-import/assets/ASTTransformer.drawio.svg -------------------------------------------------------------------------------- /doc/sysml-import/assets/UploadFileProcess.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/doc/sysml-import/assets/UploadFileProcess.drawio.svg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/syson-components/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/.prettierrc -------------------------------------------------------------------------------- /frontend/syson-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/package.json -------------------------------------------------------------------------------- /frontend/syson-components/src/extensions/useShowDiagramsIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/src/extensions/useShowDiagramsIcons.ts -------------------------------------------------------------------------------- /frontend/syson-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/src/index.ts -------------------------------------------------------------------------------- /frontend/syson-components/src/nodes/note/SysMLNoteNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/src/nodes/note/SysMLNoteNode.tsx -------------------------------------------------------------------------------- /frontend/syson-components/src/nodes/note/SysMLNoteNode.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/src/nodes/note/SysMLNoteNode.types.ts -------------------------------------------------------------------------------- /frontend/syson-components/src/nodes/note/SysMLNoteNodePart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/src/nodes/note/SysMLNoteNodePart.tsx -------------------------------------------------------------------------------- /frontend/syson-components/src/nodes/package/SysMLPackageNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/src/nodes/package/SysMLPackageNode.tsx -------------------------------------------------------------------------------- /frontend/syson-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/tsconfig.json -------------------------------------------------------------------------------- /frontend/syson-components/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson-components/vite.config.js -------------------------------------------------------------------------------- /frontend/syson/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/.env.development -------------------------------------------------------------------------------- /frontend/syson/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/.prettierrc -------------------------------------------------------------------------------- /frontend/syson/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/README.adoc -------------------------------------------------------------------------------- /frontend/syson/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/index.html -------------------------------------------------------------------------------- /frontend/syson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/package.json -------------------------------------------------------------------------------- /frontend/syson/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/public/favicon.png -------------------------------------------------------------------------------- /frontend/syson/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/public/favicon.svg -------------------------------------------------------------------------------- /frontend/syson/src/ReactFlow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/ReactFlow.css -------------------------------------------------------------------------------- /frontend/syson/src/core/SysONIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/core/SysONIcon.tsx -------------------------------------------------------------------------------- /frontend/syson/src/core/URL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/core/URL.ts -------------------------------------------------------------------------------- /frontend/syson/src/extensions/SysONFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/extensions/SysONFooter.tsx -------------------------------------------------------------------------------- /frontend/syson/src/extensions/SysONNavigationBarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/extensions/SysONNavigationBarIcon.tsx -------------------------------------------------------------------------------- /frontend/syson/src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts.css -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-Thin.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/Lato-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/Lato-ThinItalic.ttf -------------------------------------------------------------------------------- /frontend/syson/src/fonts/Lato/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/fonts/Lato/OFL.txt -------------------------------------------------------------------------------- /frontend/syson/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/index.tsx -------------------------------------------------------------------------------- /frontend/syson/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/syson/src/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/reset.css -------------------------------------------------------------------------------- /frontend/syson/src/theme/sysonTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/theme/sysonTheme.ts -------------------------------------------------------------------------------- /frontend/syson/src/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/src/variables.css -------------------------------------------------------------------------------- /frontend/syson/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/syson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/tsconfig.json -------------------------------------------------------------------------------- /frontend/syson/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/frontend/syson/vite.config.js -------------------------------------------------------------------------------- /integration-tests-cypress/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/.eslintrc.cjs -------------------------------------------------------------------------------- /integration-tests-cypress/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/.prettierrc -------------------------------------------------------------------------------- /integration-tests-cypress/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/.vscode/settings.json -------------------------------------------------------------------------------- /integration-tests-cypress/cypress-dev.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress-dev.config.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress.config.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/cypress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/cypress.d.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/pages/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/pages/Project.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/pages/Projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/pages/Projects.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/support/e2e.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/support/reactFlowCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/support/reactFlowCommands.js -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/support/serverCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/support/serverCommands.js -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/support/testIdCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/support/testIdCommands.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/usecases/Batmobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/usecases/Batmobile.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/usecases/Batmobile.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/usecases/Batmobile.types.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/usecases/SysMLv2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/usecases/SysMLv2.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/usecases/SysMLv2.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/usecases/SysMLv2.types.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/workbench/Details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/workbench/Details.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/workbench/Diagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/workbench/Diagram.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/workbench/Explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/workbench/Explorer.ts -------------------------------------------------------------------------------- /integration-tests-cypress/cypress/workbench/Workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/cypress/workbench/Workbench.ts -------------------------------------------------------------------------------- /integration-tests-cypress/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/package-lock.json -------------------------------------------------------------------------------- /integration-tests-cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/package.json -------------------------------------------------------------------------------- /integration-tests-cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-cypress/tsconfig.json -------------------------------------------------------------------------------- /integration-tests-playwright/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/.eslintrc.cjs -------------------------------------------------------------------------------- /integration-tests-playwright/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/.prettierrc -------------------------------------------------------------------------------- /integration-tests-playwright/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/package-lock.json -------------------------------------------------------------------------------- /integration-tests-playwright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/package.json -------------------------------------------------------------------------------- /integration-tests-playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/playwright.config.ts -------------------------------------------------------------------------------- /integration-tests-playwright/playwright/e2e/diagram.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/playwright/e2e/diagram.spec.ts -------------------------------------------------------------------------------- /integration-tests-playwright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/integration-tests-playwright/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/bump-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/bump-version -------------------------------------------------------------------------------- /scripts/check-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-changelog.js -------------------------------------------------------------------------------- /scripts/check-copyright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-copyright.js -------------------------------------------------------------------------------- /scripts/check-coverage.jsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-coverage.jsh -------------------------------------------------------------------------------- /scripts/check-frontend-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-frontend-dependencies.js -------------------------------------------------------------------------------- /scripts/check-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-labels.js -------------------------------------------------------------------------------- /scripts/check-milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-milestone.js -------------------------------------------------------------------------------- /scripts/check-ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/check-ts.js -------------------------------------------------------------------------------- /scripts/prepare-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/prepare-release.js -------------------------------------------------------------------------------- /scripts/restart-postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/restart-postgresql.sh -------------------------------------------------------------------------------- /scripts/update-sirius-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/scripts/update-sirius-web.js -------------------------------------------------------------------------------- /settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/settings.xml -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-syson/syson/HEAD/turbo.json --------------------------------------------------------------------------------