├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── question.md └── workflows │ ├── ci.yml │ ├── elkjs.yml │ └── nightly.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEPENDENCIES ├── LICENSE.md ├── NOTICE.md ├── README.md ├── SECURITY.md ├── config ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs └── checkstyle.xml ├── docs ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── config.toml ├── content │ ├── _index.md │ ├── blog │ │ ├── 2022.md │ │ ├── 2023.md │ │ ├── 2024.md │ │ ├── 2025.md │ │ ├── _index.md │ │ └── posts │ │ │ ├── 2022 │ │ │ ├── 22-08-31-rectpacking.md │ │ │ └── 22-11-17-libavoid.md │ │ │ ├── 2023 │ │ │ ├── 23-01-09-constraining-the-model.md │ │ │ └── 23-04-11-topdown-layout.md │ │ │ ├── 2024 │ │ │ └── 24-12-06-layer-unzipping.md │ │ │ └── 2025 │ │ │ ├── 25-08-21-layered.md │ │ │ └── 25-08-22-node-labels.md │ ├── documentation │ │ ├── _index.md │ │ ├── algorithmdevelopers.md │ │ ├── algorithmdevelopers │ │ │ ├── algorithmdebugging.md │ │ │ ├── algorithmimplementation.md │ │ │ ├── algorithmimplementation │ │ │ │ └── algorithmstructure.md │ │ │ ├── creatinganewproject.md │ │ │ ├── gettingeclipseready.md │ │ │ ├── metadatalanguage.md │ │ │ ├── metadatalanguage │ │ │ │ └── automaticbuilds.md │ │ │ ├── randomgraphs.md │ │ │ └── unittesting.md │ │ ├── contributors.md │ │ ├── contributors │ │ │ ├── buildingelk.md │ │ │ ├── developmentsetup.md │ │ │ ├── developmentworkflow.md │ │ │ └── developmentworkflow │ │ │ │ └── installingwithoomph.md │ │ ├── tooldevelopers.md │ │ └── tooldevelopers │ │ │ ├── graphdatastructure.md │ │ │ ├── graphdatastructure │ │ │ ├── coordinatesystem.md │ │ │ ├── elktextformat.md │ │ │ ├── jsonformat.md │ │ │ ├── layoutoptions.md │ │ │ └── spacingdocumentation.md │ │ │ ├── usingalgorithmsdirectly.md │ │ │ ├── usingeclipselayout.md │ │ │ ├── usingeclipselayout │ │ │ ├── advancedconfiguration.md │ │ │ ├── connectingtoelk.md │ │ │ ├── dependencyinjection.md │ │ │ └── layoutviewsupport.md │ │ │ └── usingplainjavalayout.md │ ├── downloads │ │ ├── _index.md │ │ ├── releasenotes.md │ │ └── releasenotes │ │ │ ├── release-0.1.0.md │ │ │ ├── release-0.1.1.md │ │ │ ├── release-0.10.0.md │ │ │ ├── release-0.11.0.md │ │ │ ├── release-0.2.0.md │ │ │ ├── release-0.2.1.md │ │ │ ├── release-0.2.2.md │ │ │ ├── release-0.2.3.md │ │ │ ├── release-0.3.0.md │ │ │ ├── release-0.4.0.md │ │ │ ├── release-0.4.1.md │ │ │ ├── release-0.5.0.md │ │ │ ├── release-0.6.0.md │ │ │ ├── release-0.6.1.md │ │ │ ├── release-0.7.0.md │ │ │ ├── release-0.7.1.md │ │ │ ├── release-0.8.0.md │ │ │ ├── release-0.8.1.md │ │ │ ├── release-0.9.0.md │ │ │ └── release-0.9.1.md │ ├── gettingstarted │ │ └── _index.md │ ├── reference │ │ ├── _index.md │ │ ├── algorithms.md │ │ ├── groups.md │ │ └── options.md │ └── support │ │ └── _index.md ├── elk-logos.afdesign ├── elksite.sublime-project ├── layouts │ ├── _default │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── partials │ │ ├── datalist.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── nav.html │ │ ├── nav_recursive.html │ │ └── navbar.html │ ├── reference │ │ └── datalist.html │ └── shortcodes │ │ ├── image.html │ │ └── note.html └── static │ ├── css │ ├── elk.css │ └── prism.css │ ├── img │ ├── algdev_algorithmimplementation_layout.png │ ├── algdev_creatinganewproject_project.png │ ├── algdev_creatinganewproject_step1.png │ ├── algdev_creatinganewproject_step2.png │ ├── algdev_creatinganewproject_step3.png │ ├── algdev_creatinganewproject_step4.png │ ├── algdev_debug_layoutgraphview.png │ ├── algdev_debug_layoutgraphview_negativex.png │ ├── algdev_debug_layoutgraphview_negativey.png │ ├── algdev_debug_layoutgraphview_origin.png │ ├── algdev_debug_layoutgraphview_small.png │ ├── algdev_debug_layoutlogview.png │ ├── algdev_debug_layouttimeview.png │ ├── algdev_debug_preferences.png │ ├── algdev_debug_viewcontextmenu.png │ ├── architecture.png │ ├── architecture.svg │ ├── architecture_phases.png │ ├── cb-MO.svg │ ├── cb-greedy.svg │ ├── cb-greedyMO.svg │ ├── cm-enforceMO.svg │ ├── cm-enforceNodes.svg │ ├── cm-nodesAndEdges.svg │ ├── cm-preferEdges.svg │ ├── cm-preferNodes.svg │ ├── cm-tiebreaker.svg │ ├── controller-topdown.png │ ├── eclipse_foundation_logo.svg │ ├── elk.svg │ ├── elk_fav.svg │ ├── elk_light.svg │ ├── elk_small.svg │ ├── elk_small_light.svg │ ├── elk_with_text.svg │ ├── example_layout_complexRouter.png │ ├── example_layout_complexRouter.svg │ ├── getting_started_layout_button.png │ ├── getting_started_layout_view.png │ ├── getting_started_layout_view_info.png │ ├── graph_graph.png │ ├── graph_graph.svg │ ├── graph_inclusionTree.png │ ├── graph_inclusionTree.svg │ ├── graph_metamodel.png │ ├── graph_metamodel.svg │ ├── la-correct.svg │ ├── la.svg │ ├── layered-algorithm-structure.svg │ ├── layout-reference-points.png │ ├── layout-reference-points.svg │ ├── layout_layers.png │ ├── layout_layers.svg │ ├── layout_view.png │ ├── nodeLabelPlacement-asymmetrical.svg │ ├── nodeLabelPlacement-bad.svg │ ├── nodeLabelPlacement-correct.svg │ ├── nodeLabelPlacement-parent.svg │ ├── nodeLabelPlacement-symmetrical.svg │ ├── oomph-install_step1.png │ ├── oomph-install_step2.png │ ├── oomph-install_step3.png │ ├── oomph-install_step4.png │ ├── oomph-install_step5.png │ ├── reel_debukviz.jpg │ ├── reel_klassviz.jpg │ ├── reel_ptolemy.jpg │ ├── scchartsregions-box-noexpand-annotated.svg │ ├── scchartsregions-placement-annotated.svg │ ├── scchartsregions-rectpacking-annotated.svg │ ├── scchartsregions-rectpacking-noexpand-annotated.svg │ ├── scchartsregions-rectpacking-toaspectratio2.svg │ ├── scchartsregions-subrows-annotated.svg │ ├── scchartsregions-widthapproximation-annotated.svg │ ├── top-down-scaling.png │ ├── topdown-example.svg │ └── wagon-topdown.png │ └── js │ └── prism.js ├── features ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── org.eclipse.elk.algorithms.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── org.eclipse.elk.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── org.eclipse.elk.gmf.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── org.eclipse.elk.graph.json.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── org.eclipse.elk.graphviz.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── org.eclipse.elk.libavoid.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── org.eclipse.elk.sdk.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml ├── org.eclipse.elk.ui.feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ ├── license.html │ └── pom.xml └── pom.xml ├── plugins ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── org.eclipse.elk.alg.common │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── common │ │ ├── BowyerWatsonTriangulation.java │ │ ├── ICostFunction.java │ │ ├── NaiveMinST.java │ │ ├── NodeMicroLayout.java │ │ ├── Point.java │ │ ├── RectilinearConvexHull.java │ │ ├── TEdge.java │ │ ├── TTriangle.java │ │ ├── Tree.java │ │ ├── compaction │ │ ├── DebugUtil.java │ │ ├── Polyomino.melk │ │ ├── Scanline.java │ │ ├── oned │ │ │ ├── CGraph.java │ │ │ ├── CGroup.java │ │ │ ├── CNode.java │ │ │ ├── CompareFuzzy.java │ │ │ ├── ICompactionAlgorithm.java │ │ │ ├── IConstraintCalculationAlgorithm.java │ │ │ ├── ILockFunction.java │ │ │ ├── ISpacingsHandler.java │ │ │ ├── LongestPathCompaction.java │ │ │ ├── OneDimensionalCompactor.java │ │ │ ├── QuadraticConstraintCalculation.java │ │ │ ├── Quadruplet.java │ │ │ └── ScanlineConstraintCalculator.java │ │ └── options │ │ │ ├── HighLevelSortingCriterion.java │ │ │ ├── LowLevelSortingCriterion.java │ │ │ └── TraversalStrategy.java │ │ ├── networksimplex │ │ ├── NEdge.java │ │ ├── NGraph.java │ │ ├── NNode.java │ │ └── NetworkSimplex.java │ │ ├── nodespacing │ │ ├── NodeDimensionCalculation.java │ │ ├── NodeLabelAndSizeCalculator.java │ │ ├── NodeMarginCalculator.java │ │ ├── cellsystem │ │ │ ├── AtomicCell.java │ │ │ ├── Cell.java │ │ │ ├── ContainerArea.java │ │ │ ├── ContainerCell.java │ │ │ ├── GridContainerCell.java │ │ │ ├── HorizontalLabelAlignment.java │ │ │ ├── LabelCell.java │ │ │ ├── StripContainerCell.java │ │ │ └── VerticalLabelAlignment.java │ │ └── internal │ │ │ ├── NodeContext.java │ │ │ ├── NodeLabelLocation.java │ │ │ ├── PortContext.java │ │ │ └── algorithm │ │ │ ├── CellSystemConfigurator.java │ │ │ ├── HorizontalPortPlacementSizeCalculator.java │ │ │ ├── InsidePortLabelCellCreator.java │ │ │ ├── LabelPlacer.java │ │ │ ├── NodeLabelAndSizeUtilities.java │ │ │ ├── NodeLabelCellCreator.java │ │ │ ├── NodeSizeCalculator.java │ │ │ ├── PortContextCreator.java │ │ │ ├── PortLabelPlacementCalculator.java │ │ │ ├── PortPlacementCalculator.java │ │ │ └── VerticalPortPlacementSizeCalculator.java │ │ ├── overlaps │ │ ├── GreedyRectangleStripOverlapRemover.java │ │ ├── IRectangleStripOverlapRemovalStrategy.java │ │ └── RectangleStripOverlapRemover.java │ │ ├── polyomino │ │ ├── PolyominoCompactor.java │ │ ├── ProfileFill.java │ │ ├── SuccessorCombination.java │ │ ├── SuccessorJitter.java │ │ ├── SuccessorLineByLine.java │ │ ├── SuccessorManhattan.java │ │ ├── SuccessorMaxNormWindingInMathPosSense.java │ │ ├── SuccessorQuadrantsGeneric.java │ │ └── structures │ │ │ ├── Direction.java │ │ │ ├── IThreeValueGrid.java │ │ │ ├── PlanarGrid.java │ │ │ ├── Polyomino.java │ │ │ ├── Polyominoes.java │ │ │ └── TwoBitGrid.java │ │ ├── spore │ │ ├── DepthFirstCompaction.java │ │ ├── IOverlapHandler.java │ │ ├── InternalProperties.java │ │ ├── Node.java │ │ └── ScanlineOverlapCheck.java │ │ └── utils │ │ ├── SVGImage.java │ │ ├── UniqueTriple.java │ │ └── Utils.java ├── org.eclipse.elk.alg.disco.debug │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ └── discodebug.gif │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── disco │ │ └── debug │ │ ├── DisCoDebugPlugin.java │ │ └── views │ │ ├── BaseGridVisibility.java │ │ ├── ConfigState.java │ │ ├── DisCoDebugView.java │ │ ├── DisCoGraphRenderer.java │ │ ├── DisCoGraphRenderingCanvas.java │ │ ├── DisCoGraphRenderingConfigurator.java │ │ ├── DisCoGraphRenderingFillPatterns.java │ │ ├── DisCoImageExportAction.java │ │ ├── DropdownIntRangeAction.java │ │ ├── SelectivePaintToggleAction.java │ │ └── State.java ├── org.eclipse.elk.alg.disco │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── images │ │ ├── Disco.svg │ │ ├── disco_layout.png │ │ └── exampleDisco.elkt │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── disco │ │ ├── DisCoLayoutProvider.java │ │ ├── DisCoPolyominoCompactor.java │ │ ├── Disco.melk │ │ ├── ICompactor.java │ │ ├── graph │ │ ├── DCComponent.java │ │ ├── DCDirection.java │ │ ├── DCElement.java │ │ ├── DCExtension.java │ │ └── DCGraph.java │ │ ├── options │ │ └── CompactionStrategy.java │ │ ├── structures │ │ └── DCPolyomino.java │ │ └── transform │ │ ├── ElkGraphComponentsProcessor.java │ │ ├── ElkGraphTransformer.java │ │ └── IGraphTransformer.java ├── org.eclipse.elk.alg.force │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── images │ │ ├── Force.svg │ │ ├── Stress.svg │ │ ├── exampleForce.elkt │ │ ├── force_layout.png │ │ └── stress_layout.png │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── force │ │ ├── ComponentsProcessor.java │ │ ├── ElkGraphImporter.java │ │ ├── Force.melk │ │ ├── ForceLayoutProvider.java │ │ ├── IGraphImporter.java │ │ ├── graph │ │ ├── FBendpoint.java │ │ ├── FEdge.java │ │ ├── FGraph.java │ │ ├── FLabel.java │ │ ├── FNode.java │ │ └── FParticle.java │ │ ├── model │ │ ├── AbstractForceModel.java │ │ ├── EadesModel.java │ │ └── FruchtermanReingoldModel.java │ │ ├── options │ │ ├── ForceModelStrategy.java │ │ └── InternalProperties.java │ │ └── stress │ │ ├── Stress.melk │ │ ├── StressLayoutProvider.java │ │ └── StressMajorization.java ├── org.eclipse.elk.alg.graphviz.dot │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── model │ │ └── generated │ │ │ ├── GraphvizDot.ecore │ │ │ └── GraphvizDot.genmodel │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── alg │ │ │ └── graphviz │ │ │ └── dot │ │ │ ├── AbstractGraphvizDotRuntimeModule.java │ │ │ ├── GraphvizDot.xtextbin │ │ │ ├── GraphvizDotStandaloneSetupGenerated.java │ │ │ ├── dot │ │ │ ├── Attribute.java │ │ │ ├── AttributeStatement.java │ │ │ ├── AttributeType.java │ │ │ ├── DotFactory.java │ │ │ ├── DotPackage.java │ │ │ ├── EdgeOperator.java │ │ │ ├── EdgeStatement.java │ │ │ ├── EdgeTarget.java │ │ │ ├── Graph.java │ │ │ ├── GraphType.java │ │ │ ├── GraphvizModel.java │ │ │ ├── Node.java │ │ │ ├── NodeStatement.java │ │ │ ├── Port.java │ │ │ ├── Statement.java │ │ │ ├── Subgraph.java │ │ │ ├── impl │ │ │ │ ├── AttributeImpl.java │ │ │ │ ├── AttributeStatementImpl.java │ │ │ │ ├── DotFactoryImpl.java │ │ │ │ ├── DotPackageImpl.java │ │ │ │ ├── EdgeStatementImpl.java │ │ │ │ ├── EdgeTargetImpl.java │ │ │ │ ├── GraphImpl.java │ │ │ │ ├── GraphvizModelImpl.java │ │ │ │ ├── NodeImpl.java │ │ │ │ ├── NodeStatementImpl.java │ │ │ │ ├── PortImpl.java │ │ │ │ ├── StatementImpl.java │ │ │ │ └── SubgraphImpl.java │ │ │ └── util │ │ │ │ ├── DotAdapterFactory.java │ │ │ │ └── DotSwitch.java │ │ │ ├── parser │ │ │ └── antlr │ │ │ │ ├── GraphvizDotAntlrTokenFileProvider.java │ │ │ │ ├── GraphvizDotParser.java │ │ │ │ └── internal │ │ │ │ ├── InternalGraphvizDot.g │ │ │ │ ├── InternalGraphvizDot.tokens │ │ │ │ ├── InternalGraphvizDotLexer.java │ │ │ │ └── InternalGraphvizDotParser.java │ │ │ ├── serializer │ │ │ ├── AbstractGraphvizDotSemanticSequencer.java │ │ │ └── AbstractGraphvizDotSyntacticSequencer.java │ │ │ └── services │ │ │ └── GraphvizDotGrammarAccess.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── graphviz │ │ └── dot │ │ ├── GenerateGraphvizDot.mwe2 │ │ ├── GraphvizDot.properties │ │ ├── GraphvizDot.xtext │ │ ├── GraphvizDotActivator.java │ │ ├── GraphvizDotExecutableExtensionFactory.java │ │ ├── GraphvizDotRuntimeModule.java │ │ ├── GraphvizDotStandaloneSetup.java │ │ ├── formatting2 │ │ └── GraphvizDotFormatter.xtend │ │ ├── serializer │ │ ├── GraphvizDotSemanticSequencer.java │ │ ├── GraphvizDotSerializer.java │ │ └── GraphvizDotSyntacticSequencer.java │ │ └── transform │ │ ├── Attributes.java │ │ ├── Command.java │ │ ├── DotExporter.java │ │ ├── DotImporter.java │ │ ├── DotResourceSetProvider.java │ │ ├── DotTransformationData.java │ │ ├── IDotTransformationData.java │ │ ├── NeatoModel.java │ │ └── OverlapMode.java ├── org.eclipse.elk.alg.graphviz.layouter │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── images │ │ ├── Circo.svg │ │ ├── Dot.svg │ │ ├── FDP.svg │ │ ├── Neato.svg │ │ ├── Twopi.svg │ │ ├── circo_layout.png │ │ ├── dot_layout.png │ │ ├── exampleCirco.elkt │ │ ├── exampleDot.elkt │ │ ├── exampleFDP.elkt │ │ ├── exampleNeato.elkt │ │ ├── exampleTwopi.elkt │ │ ├── fdp_layout.png │ │ ├── neato_layout.png │ │ └── twopi_layout.png │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── graphviz │ │ └── layouter │ │ ├── EclipseRuntimeDetector.java │ │ ├── Graphviz.melk │ │ ├── GraphvizException.java │ │ ├── GraphvizLayoutProvider.java │ │ ├── GraphvizLayouterPlugin.java │ │ ├── GraphvizTool.java │ │ ├── LayoutDotExporter.java │ │ ├── preferences │ │ ├── GraphvizLayouterPreferenceInitializer.java │ │ ├── GraphvizLayouterPreferenceStore.java │ │ ├── GraphvizLayouterPreferenceStoreAccess.java │ │ └── GraphvizPreferencePage.java │ │ └── util │ │ ├── ForkedOutputStream.java │ │ └── ForwardingInputStream.java ├── org.eclipse.elk.alg.layered │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── docs │ │ ├── slopedEdgeZoneWidth.md │ │ └── transformation.md │ ├── images │ │ ├── Layered.svg │ │ ├── example.elkt │ │ ├── layered_layout.png │ │ └── options │ │ │ ├── edgeRouting_polyline_slopedEdgeZoneWidth_off.png │ │ │ ├── edgeRouting_polyline_slopedEdgeZoneWidth_on.png │ │ │ ├── transformation_readingdirection_based.png │ │ │ ├── transformation_readingdirection_based.svg │ │ │ ├── transformation_rotation_based.png │ │ │ └── transformation_rotation_based.svg │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── layered │ │ ├── DebugUtil.java │ │ ├── DotDebugUtil.java │ │ ├── ElkLayered.java │ │ ├── GraphConfigurator.java │ │ ├── IHierarchyAwareLayoutProcessor.java │ │ ├── InteractiveLayeredGraphVisitor.java │ │ ├── JsonDebugUtil.java │ │ ├── Layered.melk │ │ ├── LayeredLayoutProvider.java │ │ ├── LayeredPhases.java │ │ ├── compaction │ │ ├── components │ │ │ ├── ComponentsToCGraphTransformer.java │ │ │ ├── IComponent.java │ │ │ ├── IConnectedComponents.java │ │ │ ├── IExternalExtension.java │ │ │ └── OneDimensionalComponentsCompaction.java │ │ ├── oned │ │ │ ├── CGraph.java │ │ │ ├── CGroup.java │ │ │ ├── CNode.java │ │ │ ├── CompareFuzzy.java │ │ │ ├── ICGraphTransformer.java │ │ │ ├── ISpacingsHandler.java │ │ │ ├── OneDimensionalCompactor.java │ │ │ ├── Quadruplet.java │ │ │ └── algs │ │ │ │ ├── ICompactionAlgorithm.java │ │ │ │ ├── IConstraintCalculationAlgorithm.java │ │ │ │ ├── LongestPathCompaction.java │ │ │ │ ├── QuadraticConstraintCalculation.java │ │ │ │ └── ScanlineConstraintCalculator.java │ │ └── recthull │ │ │ ├── Point.java │ │ │ ├── RectilinearConvexHull.java │ │ │ └── Scanline.java │ │ ├── components │ │ ├── AbstractGraphPlacer.java │ │ ├── ComponentGroup.java │ │ ├── ComponentGroupGraphPlacer.java │ │ ├── ComponentGroupModelOrderGraphPlacer.java │ │ ├── ComponentOrderingStrategy.java │ │ ├── ComponentsCompactor.java │ │ ├── ComponentsProcessor.java │ │ ├── ModelOrderComponentGroup.java │ │ ├── ModelOrderRowGraphPlacer.java │ │ └── SimpleRowGraphPlacer.java │ │ ├── compound │ │ ├── CompoundGraphPostprocessor.java │ │ ├── CompoundGraphPreprocessor.java │ │ ├── CrossHierarchyEdge.java │ │ └── CrossHierarchyEdgeComparator.java │ │ ├── graph │ │ ├── LEdge.java │ │ ├── LGraph.java │ │ ├── LGraphAdapters.java │ │ ├── LGraphElement.java │ │ ├── LGraphUtil.java │ │ ├── LLabel.java │ │ ├── LMargin.java │ │ ├── LNode.java │ │ ├── LPadding.java │ │ ├── LPort.java │ │ ├── LShape.java │ │ ├── Layer.java │ │ ├── Tarjan.java │ │ └── transform │ │ │ ├── ElkGraphImporter.java │ │ │ ├── ElkGraphLayoutTransferrer.java │ │ │ ├── ElkGraphTransformer.java │ │ │ └── IGraphTransformer.java │ │ ├── intermediate │ │ ├── BiLinkedHashMultiMap.java │ │ ├── CommentNodeMarginCalculator.java │ │ ├── CommentPostprocessor.java │ │ ├── CommentPreprocessor.java │ │ ├── ConstraintsPostprocessor.java │ │ ├── DummySelfLoopProcessor.java │ │ ├── EdgeAndLayerConstraintEdgeReverser.java │ │ ├── EndLabelPostprocessor.java │ │ ├── EndLabelPreprocessor.java │ │ ├── EndLabelSorter.java │ │ ├── FinalSplineBendpointsCalculator.java │ │ ├── GraphTransformer.java │ │ ├── HierarchicalNodeResizingProcessor.java │ │ ├── HierarchicalPortConstraintProcessor.java │ │ ├── HierarchicalPortDummySizeProcessor.java │ │ ├── HierarchicalPortOrthogonalEdgeRouter.java │ │ ├── HierarchicalPortPositionProcessor.java │ │ ├── HighDegreeNodeLayeringProcessor.java │ │ ├── HyperedgeDummyMerger.java │ │ ├── HypernodesProcessor.java │ │ ├── InLayerConstraintProcessor.java │ │ ├── InnermostNodeMarginCalculator.java │ │ ├── InteractiveExternalPortPositioner.java │ │ ├── IntermediateProcessorStrategy.java │ │ ├── InvertedPortProcessor.java │ │ ├── LabelAndNodeSizeProcessor.java │ │ ├── LabelDummyInserter.java │ │ ├── LabelDummyRemover.java │ │ ├── LabelDummySwitcher.java │ │ ├── LabelManagementProcessor.java │ │ ├── LabelSideSelector.java │ │ ├── LayerConstraintPostprocessor.java │ │ ├── LayerConstraintPreprocessor.java │ │ ├── LayerSizeAndGraphHeightCalculator.java │ │ ├── LongEdgeJoiner.java │ │ ├── LongEdgeSplitter.java │ │ ├── NodePromotion.java │ │ ├── NorthSouthPortPostprocessor.java │ │ ├── NorthSouthPortPreprocessor.java │ │ ├── PartitionMidprocessor.java │ │ ├── PartitionPostprocessor.java │ │ ├── PartitionPreprocessor.java │ │ ├── PortListSorter.java │ │ ├── PortSideProcessor.java │ │ ├── ReversedEdgeRestorer.java │ │ ├── SelfLoopPortRestorer.java │ │ ├── SelfLoopPostProcessor.java │ │ ├── SelfLoopPreProcessor.java │ │ ├── SelfLoopRouter.java │ │ ├── SemiInteractiveCrossMinProcessor.java │ │ ├── SortByInputModelProcessor.java │ │ ├── compaction │ │ │ ├── EdgeAwareScanlineConstraintCalculation.java │ │ │ ├── HorizontalGraphCompactor.java │ │ │ ├── LGraphToCGraphTransformer.java │ │ │ ├── NetworkSimplexCompaction.java │ │ │ └── VerticalSegment.java │ │ ├── greedyswitch │ │ │ ├── BetweenLayerEdgeTwoNodeCrossingsCounter.java │ │ │ ├── CrossingMatrixFiller.java │ │ │ ├── GreedySwitchHeuristic.java │ │ │ ├── NorthSouthEdgeNeighbouringNodeCrossingsCounter.java │ │ │ └── SwitchDecider.java │ │ ├── loops │ │ │ ├── SelfHyperLoop.java │ │ │ ├── SelfHyperLoopLabels.java │ │ │ ├── SelfLoopEdge.java │ │ │ ├── SelfLoopHolder.java │ │ │ ├── SelfLoopPort.java │ │ │ ├── SelfLoopType.java │ │ │ ├── ordering │ │ │ │ ├── PortRestorer.java │ │ │ │ └── PortSideAssigner.java │ │ │ └── routing │ │ │ │ ├── AbstractSelfLoopRouter.java │ │ │ │ ├── LabelPlacer.java │ │ │ │ ├── OrthogonalSelfLoopRouter.java │ │ │ │ ├── PolylineSelfLoopRouter.java │ │ │ │ ├── RoutingDirector.java │ │ │ │ ├── RoutingSlotAssigner.java │ │ │ │ └── SplineSelfLoopRouter.java │ │ ├── preserveorder │ │ │ ├── CMGroupModelOrderCalculator.java │ │ │ ├── ModelOrderNodeComparator.java │ │ │ └── ModelOrderPortComparator.java │ │ ├── unzipping │ │ │ └── AlternatingLayerUnzipper.java │ │ └── wrapping │ │ │ ├── ARDCutIndexHeuristic.java │ │ │ ├── BreakingPointInserter.java │ │ │ ├── BreakingPointProcessor.java │ │ │ ├── BreakingPointRemover.java │ │ │ ├── CuttingUtils.java │ │ │ ├── GraphStats.java │ │ │ ├── ICutIndexCalculator.java │ │ │ ├── MSDCutIndexHeuristic.java │ │ │ └── SingleEdgeGraphWrapper.java │ │ ├── options │ │ ├── CenterEdgeLabelPlacementStrategy.java │ │ ├── ConstraintCalculationStrategy.java │ │ ├── CrossingMinimizationStrategy.java │ │ ├── CuttingStrategy.java │ │ ├── CycleBreakingStrategy.java │ │ ├── DirectionCongruency.java │ │ ├── EdgeConstraint.java │ │ ├── EdgeLabelSideSelection.java │ │ ├── EdgeStraighteningStrategy.java │ │ ├── FixedAlignment.java │ │ ├── GraphCompactionStrategy.java │ │ ├── GraphProperties.java │ │ ├── GreedySwitchType.java │ │ ├── GroupOrderStrategy.java │ │ ├── InLayerConstraint.java │ │ ├── InteractiveReferencePoint.java │ │ ├── InternalProperties.java │ │ ├── LayerConstraint.java │ │ ├── LayerUnzippingStrategy.java │ │ ├── LayeredSpacings.java │ │ ├── LayeringStrategy.java │ │ ├── LongEdgeOrderingStrategy.java │ │ ├── NodeFlexibility.java │ │ ├── NodePlacementStrategy.java │ │ ├── NodePromotionStrategy.java │ │ ├── OrderingStrategy.java │ │ ├── PortSortingStrategy.java │ │ ├── PortType.java │ │ ├── SelfLoopDistributionStrategy.java │ │ ├── SelfLoopOrderingStrategy.java │ │ ├── SelfLoopPlacementStrategy.java │ │ ├── Spacings.java │ │ ├── SplineRoutingMode.java │ │ ├── ValidifyStrategy.java │ │ └── WrappingStrategy.java │ │ ├── p1cycles │ │ ├── BFSNodeOrderCycleBreaker.java │ │ ├── DFSNodeOrderCycleBreaker.java │ │ ├── DepthFirstCycleBreaker.java │ │ ├── GreedyCycleBreaker.java │ │ ├── GreedyModelOrderCycleBreaker.java │ │ ├── GroupModelOrderCalculator.java │ │ ├── InteractiveCycleBreaker.java │ │ ├── ModelOrderCycleBreaker.java │ │ ├── SCCModelOrderCycleBreaker.java │ │ ├── SCCNodeTypeCycleBreaker.java │ │ └── SCConnectivity.java │ │ ├── p2layers │ │ ├── BreadthFirstModelOrderLayerer.java │ │ ├── CoffmanGrahamLayerer.java │ │ ├── DepthFirstModelOrderLayerer.java │ │ ├── InteractiveLayerer.java │ │ ├── LongestPathLayerer.java │ │ ├── LongestPathSourceLayerer.java │ │ ├── MinWidthLayerer.java │ │ ├── NetworkSimplexLayerer.java │ │ └── StretchWidthLayerer.java │ │ ├── p3order │ │ ├── AbstractBarycenterPortDistributor.java │ │ ├── BarycenterHeuristic.java │ │ ├── ForsterConstraintResolver.java │ │ ├── GraphInfoHolder.java │ │ ├── GreedyPortDistributor.java │ │ ├── ICrossingMinimizationHeuristic.java │ │ ├── ISweepPortDistributor.java │ │ ├── InteractiveCrossingMinimizer.java │ │ ├── LayerSweepCrossingMinimizer.java │ │ ├── LayerSweepTypeDecider.java │ │ ├── LayerTotalPortDistributor.java │ │ ├── MedianHeuristic.java │ │ ├── ModelOrderBarycenterHeuristic.java │ │ ├── NoCrossingMinimizer.java │ │ ├── NodeRelativePortDistributor.java │ │ ├── SweepCopy.java │ │ └── counting │ │ │ ├── AllCrossingsCounter.java │ │ │ ├── BinaryIndexedTree.java │ │ │ ├── CrossMinUtil.java │ │ │ ├── CrossingsCounter.java │ │ │ ├── HyperedgeCrossingsCounter.java │ │ │ └── IInitializable.java │ │ ├── p4nodes │ │ ├── InteractiveNodePlacer.java │ │ ├── LinearSegmentsNodePlacer.java │ │ ├── NetworkSimplexPlacer.java │ │ ├── SimpleNodePlacer.java │ │ └── bk │ │ │ ├── BKAlignedLayout.java │ │ │ ├── BKAligner.java │ │ │ ├── BKCompactor.java │ │ │ ├── BKNodePlacer.java │ │ │ ├── ICompactor.java │ │ │ ├── NeighborhoodInformation.java │ │ │ └── ThresholdStrategy.java │ │ └── p5edges │ │ ├── EdgeRouterFactory.java │ │ ├── OrthogonalEdgeRouter.java │ │ ├── PolylineEdgeRouter.java │ │ ├── orthogonal │ │ ├── HyperEdgeCycleDetector.java │ │ ├── HyperEdgeSegment.java │ │ ├── HyperEdgeSegmentDependency.java │ │ ├── HyperEdgeSegmentSplitter.java │ │ ├── OrthogonalRoutingGenerator.java │ │ └── direction │ │ │ ├── BaseRoutingDirectionStrategy.java │ │ │ ├── NorthToSouthRoutingStrategy.java │ │ │ ├── RoutingDirection.java │ │ │ ├── SouthToNorthRoutingStrategy.java │ │ │ └── WestToEastRoutingStrategy.java │ │ └── splines │ │ ├── NubSpline.java │ │ ├── NubsSelfLoop.java │ │ ├── Rectangle.java │ │ ├── SplineEdgeRouter.java │ │ ├── SplineSegment.java │ │ └── SplinesMath.java ├── org.eclipse.elk.alg.libavoid │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── libavoid-server │ │ ├── libavoid-LICENSE │ │ └── libavoid-server-LICENSE │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── libavoid │ │ ├── Libavoid.melk │ │ ├── LibavoidLayoutProvider.java │ │ ├── LibavoidPlugin.java │ │ ├── LibavoidServerCommunicator.java │ │ └── server │ │ ├── LibavoidServer.java │ │ ├── LibavoidServerException.java │ │ └── LibavoidServerPool.java ├── org.eclipse.elk.alg.mrtree │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── images │ │ ├── MrTree.svg │ │ ├── exampleTree.elkt │ │ └── mrtree_layout.png │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── mrtree │ │ ├── ComponentsProcessor.java │ │ ├── ElkGraphImporter.java │ │ ├── IGraphImporter.java │ │ ├── InteractiveMrTreeGraphVisitor.java │ │ ├── MrTree.java │ │ ├── Tree.melk │ │ ├── TreeLayoutPhases.java │ │ ├── TreeLayoutProvider.java │ │ ├── TreeUtil.java │ │ ├── graph │ │ ├── TEdge.java │ │ ├── TGraph.java │ │ ├── TGraphElement.java │ │ ├── TLabel.java │ │ ├── TNode.java │ │ └── TShape.java │ │ ├── intermediate │ │ ├── CompactionProcessor.java │ │ ├── DirectionProcessor.java │ │ ├── FanProcessor.java │ │ ├── GraphBoundsProcessor.java │ │ ├── IntermediateProcessorStrategy.java │ │ ├── LevelCoordinatesProcessor.java │ │ ├── LevelHeightProcessor.java │ │ ├── LevelProcessor.java │ │ ├── NeighborsProcessor.java │ │ ├── NodePositionProcessor.java │ │ ├── RootProcessor.java │ │ └── Untreeifyer.java │ │ ├── options │ │ ├── CompactionMode.java │ │ ├── EdgeRoutingMode.java │ │ ├── GraphProperties.java │ │ ├── InternalProperties.java │ │ ├── OrderWeighting.java │ │ └── TreeifyingOrder.java │ │ ├── p1treeify │ │ └── DFSTreeifyer.java │ │ ├── p2order │ │ ├── NodeOrderer.java │ │ └── OrderBalance.java │ │ ├── p3place │ │ └── NodePlacer.java │ │ └── p4route │ │ ├── EdgeRouter.java │ │ └── MultiLevelEdgeNodeNodeGap.java ├── org.eclipse.elk.alg.radial │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── docs │ │ ├── images │ │ │ ├── EadesTree.png │ │ │ ├── EadesWedgeExample.png │ │ │ ├── Phases.png │ │ │ └── RadialFinal.png │ │ └── radial.md │ ├── images │ │ ├── Radial.svg │ │ ├── exampleRadial.elkt │ │ └── radial_layout.png │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── radial │ │ ├── InternalProperties.java │ │ ├── Radial.melk │ │ ├── RadialLayoutPhases.java │ │ ├── RadialLayoutProvider.java │ │ ├── RadialUtil.java │ │ ├── intermediate │ │ ├── CalculateGraphSize.java │ │ ├── EdgeAngleCalculator.java │ │ ├── IntermediateProcessorStrategy.java │ │ ├── compaction │ │ │ ├── AbstractRadiusExtensionCompaction.java │ │ │ ├── AnnulusWedgeCompaction.java │ │ │ ├── GeneralCompactor.java │ │ │ ├── IRadialCompactor.java │ │ │ └── RadialCompaction.java │ │ ├── optimization │ │ │ ├── CrossingMinimizationPosition.java │ │ │ ├── EdgeLengthOptimization.java │ │ │ ├── EdgeLengthPositionOptimization.java │ │ │ └── IEvaluation.java │ │ ├── overlaps │ │ │ ├── IOverlapRemoval.java │ │ │ └── RadiusExtensionOverlapRemoval.java │ │ └── rotation │ │ │ ├── AngleRotation.java │ │ │ ├── GeneralRotator.java │ │ │ └── IRadialRotator.java │ │ ├── options │ │ ├── AnnulusWedgeCriteria.java │ │ ├── CompactionStrategy.java │ │ ├── OverlapRemovalStrategy.java │ │ ├── RadialTranslationStrategy.java │ │ └── SortingStrategy.java │ │ ├── p1position │ │ ├── EadesRadial.java │ │ └── wedge │ │ │ ├── AnnulusWedgeByLeafs.java │ │ │ ├── AnnulusWedgeByNodeSpace.java │ │ │ └── IAnnulusWedgeCriteria.java │ │ ├── p2routing │ │ ├── IRadialEdgeRouter.java │ │ └── StraightLineEdgeRouter.java │ │ └── sorting │ │ ├── IDSorter.java │ │ ├── IRadialSorter.java │ │ └── PolarCoordinateSorter.java ├── org.eclipse.elk.alg.rectpacking │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── docs │ │ ├── packingstrategy.md │ │ └── rectpacking.md │ ├── images │ │ └── options │ │ │ ├── expand_to_aspect_ratio.png │ │ │ ├── initial_placement.png │ │ │ ├── node_expansion.png │ │ │ ├── row_compaction.png │ │ │ ├── strategy_areadriven.png │ │ │ ├── strategy_aspectratiodriven.png │ │ │ ├── strategy_maxscaledriven.png │ │ │ └── width_approximation.png │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── rectpacking │ │ ├── InteractiveRectPackingGraphVisitor.java │ │ ├── RectPacking.melk │ │ ├── RectPackingLayoutPhases.java │ │ ├── RectPackingLayoutProvider.java │ │ ├── intermediate │ │ ├── InteractiveNodeReorderer.java │ │ ├── IntermediateProcessorStrategy.java │ │ ├── MinSizePostProcessor.java │ │ ├── MinSizePreProcessor.java │ │ ├── NodeSizeComparator.java │ │ └── NodeSizeReorderer.java │ │ ├── options │ │ ├── InternalProperties.java │ │ └── OptimizationGoal.java │ │ ├── p1widthapproximation │ │ ├── AreaApproximation.java │ │ ├── AreaFilter.java │ │ ├── AspectRatioFilter.java │ │ ├── BestCandidateFilter.java │ │ ├── Calculations.java │ │ ├── GreedyWidthApproximator.java │ │ ├── ScaleMeasureFilter.java │ │ ├── TargetWidthWidthApproximator.java │ │ └── WidthApproximationStrategy.java │ │ ├── p2packing │ │ ├── Compaction.java │ │ ├── Compactor.java │ │ ├── InitialPlacement.java │ │ ├── NoPlacement.java │ │ ├── PackingStrategy.java │ │ ├── RowFillingAndCompaction.java │ │ └── SimplePlacement.java │ │ ├── p3whitespaceelimination │ │ ├── EqualWhitespaceEliminator.java │ │ ├── RectangleExpansion.java │ │ ├── ToAspectratioNodeExpander.java │ │ └── WhiteSpaceEliminationStrategy.java │ │ └── util │ │ ├── Block.java │ │ ├── BlockRow.java │ │ ├── BlockStack.java │ │ ├── DrawingData.java │ │ ├── DrawingDataDescriptor.java │ │ ├── DrawingUtil.java │ │ └── RectRow.java ├── org.eclipse.elk.alg.spore │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── docs │ │ └── spore.md │ ├── images │ │ ├── compaction-example.png │ │ ├── compaction-example.svg │ │ ├── controller-ro.png │ │ ├── controller-ro.svg │ │ ├── controller-ros.png │ │ ├── controller-ros.svg │ │ ├── exampleForce.elkt │ │ ├── overlap-removal.png │ │ ├── overlap-removal.svg │ │ └── overlaps.elkt │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── spore │ │ ├── ElkGraphImporter.java │ │ ├── IGraphImporter.java │ │ ├── OverlapRemovalLayoutProvider.java │ │ ├── SPOrE.melk │ │ ├── SPOrEPhases.java │ │ ├── ShrinkTree.java │ │ ├── ShrinkTreeLayoutProvider.java │ │ ├── graph │ │ └── Graph.java │ │ ├── options │ │ ├── CompactionStrategy.java │ │ ├── OverlapRemovalStrategy.java │ │ ├── RootSelection.java │ │ ├── SpanningTreeCostFunction.java │ │ ├── StructureExtractionStrategy.java │ │ └── TreeConstructionStrategy.java │ │ ├── p1structure │ │ └── DelaunayTriangulationPhase.java │ │ ├── p2processingorder │ │ ├── MaxSTPhase.java │ │ └── MinSTPhase.java │ │ └── p3execution │ │ ├── GrowTreePhase.java │ │ └── ShrinkTreeCompactionPhase.java ├── org.eclipse.elk.alg.topdownpacking │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── topdownpacking │ │ ├── BottomRowEqualWhitespaceEliminator.java │ │ ├── Grid.java │ │ ├── GridElkNode.java │ │ ├── INodeArranger.java │ │ ├── LeftRightTopDownNodePlacer.java │ │ ├── NodeArrangementStrategy.java │ │ ├── TopdownPackingPhases.java │ │ ├── Topdownpacking.melk │ │ ├── TopdownpackingLayoutProvider.java │ │ └── WhitespaceEliminationStrategy.java ├── org.eclipse.elk.alg.vertiflex │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── docs │ │ └── vertiflex.md │ ├── images │ │ └── vertiflex.png │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── alg │ │ └── vertiflex │ │ ├── EdgeRoutingStrategy.java │ │ ├── InternalProperties.java │ │ ├── VertiFlex.melk │ │ ├── VertiFlexLayoutPhases.java │ │ ├── VertiFlexLayoutProvider.java │ │ ├── VertiFlexUtil.java │ │ ├── p1yplacement │ │ ├── NodeYPlacer.java │ │ └── NodeYPlacerStrategy.java │ │ ├── p2relative │ │ ├── NodeComparator.java │ │ ├── OutlineNode.java │ │ ├── RelativeXPlacer.java │ │ └── RelativeXPlacerStrategy.java │ │ ├── p3absolute │ │ ├── AbsoluteXPlacer.java │ │ └── AbsoluteXPlacerStrategy.java │ │ └── p4edgerouting │ │ ├── BendEdgeRouter.java │ │ ├── EdgerouterStrategy.java │ │ └── StraightEdgeRouter.java ├── org.eclipse.elk.conn.gmf │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── images │ │ ├── Draw2D.svg │ │ ├── draw2D_layout.png │ │ ├── draw2d.png │ │ └── exampleDraw2D.elkt │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── conn │ │ └── gmf │ │ ├── ApplyLayoutRequest.java │ │ ├── ElkLayoutProvider.java │ │ ├── GmfDiagramLayoutConnector.java │ │ ├── GmfLayoutCommand.java │ │ ├── GmfLayoutConfigurationStore.java │ │ ├── GmfLayoutEditPolicy.java │ │ ├── GmfLayoutSetup.java │ │ ├── IEditPartFilter.java │ │ ├── LayoutDiagramFileHandler.java │ │ ├── LayoutEditPolicyProvider.java │ │ └── layouter │ │ ├── Draw2DLayoutProvider.java │ │ └── Gmf.melk ├── org.eclipse.elk.core.debug.grandom.ide │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ ├── src-gen │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.xtext.ISetup │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── core │ │ │ └── debug │ │ │ └── grandom │ │ │ └── ide │ │ │ ├── AbstractGRandomIdeModule.java │ │ │ └── contentassist │ │ │ └── antlr │ │ │ ├── GRandomParser.java │ │ │ ├── PartialGRandomContentAssistParser.java │ │ │ └── internal │ │ │ ├── InternalGRandom.g │ │ │ ├── InternalGRandom.tokens │ │ │ ├── InternalGRandomLexer.java │ │ │ └── InternalGRandomParser.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── debug │ │ └── grandom │ │ └── ide │ │ ├── GRandomIdeModule.xtend │ │ └── GRandomIdeSetup.xtend ├── org.eclipse.elk.core.debug.grandom.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── core │ │ │ └── debug │ │ │ └── grandom │ │ │ └── ui │ │ │ ├── AbstractGRandomUiModule.java │ │ │ ├── GRandomExecutableExtensionFactory.java │ │ │ ├── contentassist │ │ │ └── AbstractGRandomProposalProvider.java │ │ │ ├── internal │ │ │ └── GrandomActivator.java │ │ │ └── quickfix │ │ │ └── GRandomQuickfixProvider.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── debug │ │ └── grandom │ │ └── ui │ │ ├── GRandomGraphMaker.xtend │ │ ├── GRandomHandler.xtend │ │ ├── GRandomUiModule.xtend │ │ └── contentassist │ │ └── GRandomProposalProvider.xtend ├── org.eclipse.elk.core.debug.grandom │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── model │ │ └── generated │ │ │ ├── GRandom.ecore │ │ │ └── GRandom.genmodel │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── core │ │ │ └── debug │ │ │ └── grandom │ │ │ ├── AbstractGRandomRuntimeModule.java │ │ │ ├── GRandom.xtextbin │ │ │ ├── GRandomStandaloneSetupGenerated.java │ │ │ ├── gRandom │ │ │ ├── Configuration.java │ │ │ ├── ConstraintType.java │ │ │ ├── DoubleQuantity.java │ │ │ ├── Edges.java │ │ │ ├── Flow.java │ │ │ ├── FlowType.java │ │ │ ├── Form.java │ │ │ ├── Formats.java │ │ │ ├── GRandomFactory.java │ │ │ ├── GRandomPackage.java │ │ │ ├── Hierarchy.java │ │ │ ├── Nodes.java │ │ │ ├── Ports.java │ │ │ ├── RandGraph.java │ │ │ ├── Side.java │ │ │ ├── Size.java │ │ │ ├── impl │ │ │ │ ├── ConfigurationImpl.java │ │ │ │ ├── DoubleQuantityImpl.java │ │ │ │ ├── EdgesImpl.java │ │ │ │ ├── FlowImpl.java │ │ │ │ ├── GRandomFactoryImpl.java │ │ │ │ ├── GRandomPackageImpl.java │ │ │ │ ├── HierarchyImpl.java │ │ │ │ ├── NodesImpl.java │ │ │ │ ├── PortsImpl.java │ │ │ │ ├── RandGraphImpl.java │ │ │ │ └── SizeImpl.java │ │ │ └── util │ │ │ │ ├── GRandomAdapterFactory.java │ │ │ │ └── GRandomSwitch.java │ │ │ ├── parser │ │ │ └── antlr │ │ │ │ ├── GRandomAntlrTokenFileProvider.java │ │ │ │ ├── GRandomParser.java │ │ │ │ └── internal │ │ │ │ ├── InternalGRandom.g │ │ │ │ ├── InternalGRandom.tokens │ │ │ │ ├── InternalGRandomLexer.java │ │ │ │ └── InternalGRandomParser.java │ │ │ ├── scoping │ │ │ └── AbstractGRandomScopeProvider.java │ │ │ ├── serializer │ │ │ ├── GRandomSemanticSequencer.java │ │ │ └── GRandomSyntacticSequencer.java │ │ │ ├── services │ │ │ └── GRandomGrammarAccess.java │ │ │ └── validation │ │ │ └── AbstractGRandomValidator.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── debug │ │ └── grandom │ │ ├── GRandom.xtext │ │ ├── GRandomRuntimeModule.xtend │ │ ├── GRandomStandaloneSetup.xtend │ │ ├── GenerateGRandom.mwe2 │ │ ├── generators │ │ ├── BlindTextGenerator.java │ │ ├── ConfigurationParser.xtend │ │ ├── GeneratorOptions.java │ │ └── RandomGraphGenerator.java │ │ ├── scoping │ │ └── GRandomScopeProvider.xtend │ │ └── validation │ │ └── GRandomValidator.xtend ├── org.eclipse.elk.core.debug │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── clock.gif │ │ ├── execution.gif │ │ ├── expand_all.gif │ │ ├── filter.png │ │ ├── graph.gif │ │ ├── graph_dot.png │ │ ├── graph_json.png │ │ ├── import.png │ │ ├── log.png │ │ ├── no_log.png │ │ ├── preference.gif │ │ └── refresh.gif │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── debug │ │ ├── ElkDebugPlugin.java │ │ ├── actions │ │ ├── ClearExecutionAction.java │ │ ├── ClearExecutionsAction.java │ │ ├── CollapseExecutionTreeAction.java │ │ ├── CompressLogFolderAction.java │ │ ├── ExpandExecutionTreeAction.java │ │ ├── FilterExecutionTreeAction.java │ │ ├── PreferenceAction.java │ │ └── RevealLogFolderAction.java │ │ ├── model │ │ ├── ExecutionInfo.java │ │ ├── ExecutionInfoContentProvider.java │ │ ├── ExecutionInfoModel.java │ │ └── IExecutionInfoModelListener.java │ │ ├── views │ │ ├── AbstractLayoutDebugView.java │ │ ├── graph │ │ │ ├── GraphListLabelProvider.java │ │ │ ├── GraphTreeLabelProvider.java │ │ │ ├── ImageExportAction.java │ │ │ ├── LayoutGraphView.java │ │ │ ├── LayoutGraphViewDropAdapter.java │ │ │ ├── LayoutUponLoadSettingAction.java │ │ │ ├── LoadGraphAction.java │ │ │ └── ReloadFromFileAction.java │ │ ├── log │ │ │ ├── LayoutLogView.java │ │ │ └── LogLabelProvider.java │ │ └── time │ │ │ ├── ExecutionTimeLabelProvider.java │ │ │ └── ExecutionTimeView.java │ │ └── wizard │ │ ├── AlgorithmPluginContentWizard.java │ │ ├── AlgorithmProjectCreationPage.java │ │ └── templates │ │ ├── LayoutProviderTemplate.xtend │ │ └── MelkTemplate.xtend ├── org.eclipse.elk.core.meta.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.xtext.ISetup │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── core │ │ │ └── meta │ │ │ ├── ide │ │ │ ├── AbstractMetaDataIdeModule.java │ │ │ └── contentassist │ │ │ │ └── antlr │ │ │ │ ├── MetaDataParser.java │ │ │ │ ├── PartialMetaDataContentAssistParser.java │ │ │ │ └── internal │ │ │ │ ├── InternalMetaData.g │ │ │ │ ├── InternalMetaData.tokens │ │ │ │ ├── InternalMetaDataLexer.java │ │ │ │ └── InternalMetaDataParser.java │ │ │ └── ui │ │ │ ├── AbstractMetaDataUiModule.java │ │ │ ├── MetaDataExecutableExtensionFactory.java │ │ │ ├── contentassist │ │ │ └── MetaDataProposalProvider.java │ │ │ ├── editor │ │ │ └── MetaDataEditor.java │ │ │ ├── internal │ │ │ └── MetaActivator.java │ │ │ └── quickfix │ │ │ └── MetaDataQuickfixProvider.java │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── core │ │ │ └── meta │ │ │ ├── ide │ │ │ ├── MetaDataIdeModule.xtend │ │ │ └── MetaDataIdeSetup.xtend │ │ │ └── ui │ │ │ ├── MetaDataUiModule.xtend │ │ │ ├── labeling │ │ │ ├── MetaDataDescriptionLabelProvider.xtend │ │ │ └── MetaDataLabelProvider.xtend │ │ │ └── outline │ │ │ └── MetaDataOutlineTreeProvider.xtend │ └── templates │ │ └── templates.xml ├── org.eclipse.elk.core.meta │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── model │ │ └── generated │ │ │ ├── MetaData.ecore │ │ │ └── MetaData.genmodel │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── core │ │ │ └── meta │ │ │ ├── AbstractMetaDataRuntimeModule.java │ │ │ ├── MetaData.xtextbin │ │ │ ├── MetaDataStandaloneSetupGenerated.java │ │ │ ├── metaData │ │ │ ├── MdAlgorithm.java │ │ │ ├── MdBundle.java │ │ │ ├── MdBundleMember.java │ │ │ ├── MdCategory.java │ │ │ ├── MdGraphFeature.java │ │ │ ├── MdGroup.java │ │ │ ├── MdGroupOrOption.java │ │ │ ├── MdModel.java │ │ │ ├── MdOption.java │ │ │ ├── MdOptionDependency.java │ │ │ ├── MdOptionSupport.java │ │ │ ├── MdOptionTargetType.java │ │ │ ├── MetaDataFactory.java │ │ │ ├── MetaDataPackage.java │ │ │ ├── impl │ │ │ │ ├── MdAlgorithmImpl.java │ │ │ │ ├── MdBundleImpl.java │ │ │ │ ├── MdBundleMemberImpl.java │ │ │ │ ├── MdCategoryImpl.java │ │ │ │ ├── MdGroupImpl.java │ │ │ │ ├── MdGroupOrOptionImpl.java │ │ │ │ ├── MdModelImpl.java │ │ │ │ ├── MdOptionDependencyImpl.java │ │ │ │ ├── MdOptionImpl.java │ │ │ │ ├── MdOptionSupportImpl.java │ │ │ │ ├── MetaDataFactoryImpl.java │ │ │ │ └── MetaDataPackageImpl.java │ │ │ └── util │ │ │ │ ├── MetaDataAdapterFactory.java │ │ │ │ └── MetaDataSwitch.java │ │ │ ├── parser │ │ │ └── antlr │ │ │ │ ├── MetaDataAntlrTokenFileProvider.java │ │ │ │ ├── MetaDataParser.java │ │ │ │ └── internal │ │ │ │ ├── InternalMetaData.g │ │ │ │ ├── InternalMetaData.tokens │ │ │ │ ├── InternalMetaDataLexer.java │ │ │ │ └── InternalMetaDataParser.java │ │ │ ├── scoping │ │ │ └── AbstractMetaDataScopeProvider.java │ │ │ ├── serializer │ │ │ ├── MetaDataSemanticSequencer.java │ │ │ └── MetaDataSyntacticSequencer.java │ │ │ ├── services │ │ │ └── MetaDataGrammarAccess.java │ │ │ └── validation │ │ │ └── AbstractMetaDataValidator.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── meta │ │ ├── GenerateMetaData.mwe2 │ │ ├── MetaData.xtext │ │ ├── MetaDataRuntimeModule.xtend │ │ ├── MetaDataStandaloneSetup.xtend │ │ ├── formatting2 │ │ └── MetaDataFormatter.xtend │ │ ├── jvmmodel │ │ ├── MelkDocumentationGenerator.xtend │ │ └── MetaDataJvmModelInferrer.xtend │ │ ├── scoping │ │ └── MetaDataScopeProvider.xtend │ │ └── validation │ │ ├── MelkUniqueClassNameValidator.xtend │ │ └── MetaDataValidator.xtend ├── org.eclipse.elk.core.service │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ ├── schema │ │ └── layoutConnectors.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── service │ │ ├── DiagramLayoutEngine.java │ │ ├── ElkServicePlugin.java │ │ ├── IDiagramLayoutConnector.java │ │ ├── ILayoutConfigurationStore.java │ │ ├── ILayoutListener.java │ │ ├── ILayoutSetup.java │ │ ├── LayoutConfigurationManager.java │ │ ├── LayoutConnectorsService.java │ │ ├── LayoutMapping.java │ │ ├── internal │ │ └── DefaultModule.java │ │ └── util │ │ ├── CompoundGraphElementVisitor.java │ │ ├── MonitoredOperation.java │ │ └── ProgressMonitorAdapter.java ├── org.eclipse.elk.core.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── error_overlay.png │ │ ├── menu16 │ │ │ └── arrange.gif │ │ ├── obj16 │ │ │ ├── prop_choice.gif │ │ │ ├── prop_double.gif │ │ │ ├── prop_false.gif │ │ │ ├── prop_int.gif │ │ │ ├── prop_text.gif │ │ │ └── prop_true.gif │ │ └── view16 │ │ │ └── layout.gif │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ └── ui │ │ ├── ActiveEditorSupportedTester.java │ │ ├── AlgorithmContentProvider.java │ │ ├── AlgorithmSelectionDialog.java │ │ ├── ElkUiPlugin.java │ │ ├── LayoutHandler.java │ │ ├── LayoutOptionLabelProvider.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── LayoutPreferencePage.java │ │ └── PreferenceInitializer.java │ │ ├── rendering │ │ ├── GraphRenderer.java │ │ ├── GraphRenderingCanvas.java │ │ ├── GraphRenderingConfigurator.java │ │ └── LayoutGraphDialog.java │ │ ├── util │ │ └── ElkUiUtil.java │ │ └── views │ │ ├── AlgorithmCellEditor.java │ │ ├── LayoutPropertyDescriptor.java │ │ ├── LayoutPropertySource.java │ │ ├── LayoutPropertySourceProvider.java │ │ ├── LayoutViewPart.java │ │ ├── MultipleOptionsCellEditor.java │ │ ├── ShowLayoutViewHandler.java │ │ └── ValidatingPropertySheetEntry.java ├── org.eclipse.elk.core │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.properties │ ├── build.properties │ ├── docs │ │ ├── sizeconstraints.md │ │ ├── sizeoptions.md │ │ └── topdownlayout.md │ ├── images │ │ ├── Box.svg │ │ ├── Random.svg │ │ ├── box_layout.png │ │ ├── controller.png │ │ ├── exampleBox.elkt │ │ ├── exampleRandomizer.elkt │ │ ├── hierarchical_parallel_example.png │ │ ├── mixed_example.png │ │ ├── options │ │ │ ├── node_size_constraints_full.png │ │ │ ├── node_size_constraints_full.svg │ │ │ ├── node_size_constraints_nodelabels.png │ │ │ ├── node_size_constraints_nodelabels.svg │ │ │ ├── node_size_constraints_nodelabels_ports.png │ │ │ ├── node_size_constraints_nodelabels_ports.svg │ │ │ ├── node_size_constraints_nodelabels_ports_portlabels.png │ │ │ ├── node_size_constraints_nodelabels_ports_portlabels.svg │ │ │ ├── node_size_constraints_none.png │ │ │ ├── node_size_constraints_none.svg │ │ │ ├── node_size_options_asymmetrical.png │ │ │ ├── node_size_options_asymmetrical.svg │ │ │ ├── node_size_options_force_tabular_node_labels.png │ │ │ ├── node_size_options_force_tabular_node_labels.svg │ │ │ ├── node_size_options_min_size_accounts_for_padding.png │ │ │ ├── node_size_options_min_size_accounts_for_padding.svg │ │ │ ├── node_size_options_outside_node_labels_overhang.png │ │ │ ├── node_size_options_outside_node_labels_overhang.svg │ │ │ ├── node_size_options_ports_overhang.png │ │ │ ├── node_size_options_ports_overhang.svg │ │ │ ├── node_size_options_space_efficient_port_labels.png │ │ │ ├── node_size_options_space_efficient_port_labels.svg │ │ │ ├── node_size_options_uniform_port_spacing.png │ │ │ └── node_size_options_uniform_port_spacing.svg │ │ ├── random_layout.png │ │ └── topdown_example_combined1.png │ ├── modeling32.png │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.elk.core.data.ILayoutMetaDataProvider │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── core │ │ ├── AbstractLayoutProvider.java │ │ ├── Core.melk │ │ ├── IGraphLayoutEngine.java │ │ ├── ITopdownLayoutProvider.java │ │ ├── LayoutConfigurator.java │ │ ├── RecursiveGraphLayoutEngine.java │ │ ├── UnsupportedConfigurationException.java │ │ ├── UnsupportedGraphException.java │ │ ├── alg │ │ ├── AlgorithmAssembler.java │ │ ├── EnumBasedFactoryComparator.java │ │ ├── ILayoutPhase.java │ │ ├── ILayoutPhaseFactory.java │ │ ├── ILayoutProcessor.java │ │ ├── ILayoutProcessorFactory.java │ │ └── LayoutProcessorConfiguration.java │ │ ├── comments │ │ ├── AbstractNormalizedMatcher.java │ │ ├── AggregatedMatchDecider.java │ │ ├── AlignmentMatcher.java │ │ ├── CommentAttacher.java │ │ ├── DistanceMatcher.java │ │ ├── ElkGraphBoundsProvider.java │ │ ├── ElkGraphDataProvider.java │ │ ├── IBoundsProvider.java │ │ ├── IDataProvider.java │ │ ├── IDecider.java │ │ ├── IExplicitAttachmentProvider.java │ │ ├── IFilter.java │ │ ├── IMatcher.java │ │ ├── NodeReferenceMatcher.java │ │ ├── SizeFilter.java │ │ └── TextPrefixFilter.java │ │ ├── data │ │ ├── DeprecatedLayoutOptionReplacer.java │ │ ├── ILayoutMetaData.java │ │ ├── ILayoutMetaDataProvider.java │ │ ├── LayoutAlgorithmData.java │ │ ├── LayoutAlgorithmResolver.java │ │ ├── LayoutCategoryData.java │ │ ├── LayoutDataContentAssist.java │ │ ├── LayoutMetaDataService.java │ │ └── LayoutOptionData.java │ │ ├── labels │ │ ├── ILabelManager.java │ │ └── Labels.melk │ │ ├── math │ │ ├── BezierSpline.java │ │ ├── CubicSplineInterpolator.java │ │ ├── ElkMargin.java │ │ ├── ElkMath.java │ │ ├── ElkPadding.java │ │ ├── ElkRectangle.java │ │ ├── ISplineInterpolator.java │ │ ├── KVector.java │ │ ├── KVectorChain.java │ │ └── Spacing.java │ │ ├── options │ │ ├── Alignment.java │ │ ├── ContentAlignment.java │ │ ├── Direction.java │ │ ├── EdgeCoords.java │ │ ├── EdgeLabelPlacement.java │ │ ├── EdgeRouting.java │ │ ├── EdgeType.java │ │ ├── HierarchyHandling.java │ │ ├── ITopdownSizeApproximator.java │ │ ├── LabelSide.java │ │ ├── NodeLabelPlacement.java │ │ ├── PortAlignment.java │ │ ├── PortConstraints.java │ │ ├── PortLabelPlacement.java │ │ ├── PortSide.java │ │ ├── ShapeCoords.java │ │ ├── SizeConstraint.java │ │ ├── SizeOptions.java │ │ ├── TopdownNodeTypes.java │ │ ├── TopdownSizeApproximator.java │ │ └── TopdownSizeApproximatorUtil.java │ │ ├── testing │ │ ├── IWhiteBoxTestable.java │ │ └── TestController.java │ │ ├── util │ │ ├── AbstractRandomListAccessor.java │ │ ├── AlgorithmFactory.java │ │ ├── BasicProgressMonitor.java │ │ ├── BoxLayoutProvider.java │ │ ├── DefaultFactory.java │ │ ├── ElkSpacings.java │ │ ├── ElkUtil.java │ │ ├── ExclusiveBounds.java │ │ ├── FixedLayoutProvider.java │ │ ├── IDataObject.java │ │ ├── IElkCancelIndicator.java │ │ ├── IElkProgressMonitor.java │ │ ├── IFactory.java │ │ ├── IGraphElementVisitor.java │ │ ├── IndividualSpacings.java │ │ ├── InstancePool.java │ │ ├── LoggedGraph.java │ │ ├── Maybe.java │ │ ├── NullElkProgressMonitor.java │ │ ├── Pair.java │ │ ├── PropertyConstantsDelegator.java │ │ ├── Quadruple.java │ │ ├── RandomLayoutProvider.java │ │ ├── Triple.java │ │ ├── WrappedException.java │ │ ├── adapters │ │ │ ├── ElkGraphAdapters.java │ │ │ └── GraphAdapters.java │ │ ├── internal │ │ │ └── LayoutOptionProxy.java │ │ ├── persistence │ │ │ ├── ElkGraphResource.java │ │ │ ├── ElkGraphResourceFactory.java │ │ │ ├── ElkGraphXMIHelper.java │ │ │ └── ElkGraphXMISave.java │ │ └── selection │ │ │ ├── DefaultSelectionIterator.java │ │ │ └── SelectionIterator.java │ │ └── validation │ │ ├── GraphIssue.java │ │ ├── GraphValidationException.java │ │ ├── GraphValidator.java │ │ ├── IValidatingGraphElementVisitor.java │ │ └── LayoutOptionValidator.java ├── org.eclipse.elk.graph.json.text.ide │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ ├── src-gen │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.xtext.ISetup │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── graph │ │ │ └── json │ │ │ └── text │ │ │ └── ide │ │ │ ├── AbstractElkGraphJsonIdeModule.java │ │ │ └── contentassist │ │ │ └── antlr │ │ │ ├── ElkGraphJsonParser.java │ │ │ ├── PartialElkGraphJsonContentAssistParser.java │ │ │ └── internal │ │ │ ├── InternalElkGraphJson.g │ │ │ ├── InternalElkGraphJson.tokens │ │ │ ├── InternalElkGraphJsonLexer.java │ │ │ └── InternalElkGraphJsonParser.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── json │ │ └── text │ │ └── ide │ │ ├── ElkGraphJsonIdeModule.xtend │ │ ├── ElkGraphJsonIdeSetup.xtend │ │ └── contentassist │ │ └── ElkGraphJsonProposalProvider.xtend ├── org.eclipse.elk.graph.json.text.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── graph │ │ │ └── json │ │ │ └── text │ │ │ ├── ui │ │ │ ├── AbstractElkGraphJsonUiModule.java │ │ │ ├── ElkGraphJsonExecutableExtensionFactory.java │ │ │ ├── contentassist │ │ │ │ └── AbstractElkGraphJsonProposalProvider.java │ │ │ └── internal │ │ │ │ └── TextActivator.java │ │ │ └── validation │ │ │ └── ElkGraphJsonValidatorConfigurationBlock.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── json │ │ └── text │ │ └── ui │ │ ├── ConvertGraphHandler.xtend │ │ ├── ElkGraphJsonTextUiActivator.xtend │ │ ├── ElkGraphJsonUiModule.xtend │ │ ├── contentassist │ │ └── ElkGraphJsonProposalProvider.xtend │ │ ├── labeling │ │ ├── ElkGraphJsonDescriptionLabelProvider.xtend │ │ └── ElkGraphJsonLabelProvider.xtend │ │ ├── outline │ │ └── ElkGraphJsonOutlineTreeProvider.xtend │ │ └── quickfix │ │ └── ElkGraphJsonQuickfixProvider.xtend ├── org.eclipse.elk.graph.json.text │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── graph │ │ │ └── json │ │ │ └── text │ │ │ ├── AbstractElkGraphJsonRuntimeModule.java │ │ │ ├── ElkGraphJson.xtextbin │ │ │ ├── ElkGraphJsonStandaloneSetupGenerated.java │ │ │ ├── parser │ │ │ └── antlr │ │ │ │ ├── ElkGraphJsonAntlrTokenFileProvider.java │ │ │ │ ├── ElkGraphJsonParser.java │ │ │ │ └── internal │ │ │ │ ├── InternalElkGraphJson.g │ │ │ │ ├── InternalElkGraphJson.tokens │ │ │ │ ├── InternalElkGraphJsonLexer.java │ │ │ │ └── InternalElkGraphJsonParser.java │ │ │ ├── scoping │ │ │ └── AbstractElkGraphJsonScopeProvider.java │ │ │ ├── serializer │ │ │ ├── AbstractElkGraphJsonSemanticSequencer.java │ │ │ └── AbstractElkGraphJsonSyntacticSequencer.java │ │ │ ├── services │ │ │ └── ElkGraphJsonGrammarAccess.java │ │ │ └── validation │ │ │ ├── AbstractElkGraphJsonValidator.java │ │ │ └── ElkGraphJsonConfigurableIssueCodesProvider.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── json │ │ └── text │ │ ├── ElkGraphJson.xtext │ │ ├── ElkGraphJsonRuntimeModule.xtend │ │ ├── ElkGraphJsonStandaloneSetup.xtend │ │ ├── GenerateElkGraphJson.mwe2 │ │ ├── conversion │ │ ├── ElkGraphJsonValueConverterService.xtend │ │ ├── NumberValueConverter.xtend │ │ ├── PropertyKeyValueConverter.xtend │ │ └── PropertyValueValueConverter.xtend │ │ ├── formatting2 │ │ └── ElkGraphJsonFormatter.xtend │ │ ├── generator │ │ └── ElkGraphJsonGenerator.java │ │ ├── naming │ │ └── ElkGraphJsonQualifiedNameProvider.xtend │ │ ├── scoping │ │ └── ElkGraphJsonScopeProvider.xtend │ │ ├── serializer │ │ ├── ElkGraphJsonSemanticSequencer.xtend │ │ ├── ElkGraphJsonSyntacticSequencer.xtend │ │ └── ElkGraphJsonTransientValueService.xtend │ │ └── validation │ │ └── ElkGraphJsonValidator.xtend ├── org.eclipse.elk.graph.json │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── json │ │ ├── ElkGraphJson.java │ │ ├── JsonAdapter.xtend │ │ ├── JsonExporter.xtend │ │ ├── JsonImportException.xtend │ │ ├── JsonImporter.xtend │ │ └── JsonMetaDataConverter.xtend ├── org.eclipse.elk.graph.text.ide │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ ├── src-gen │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.xtext.ISetup │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── graph │ │ │ └── text │ │ │ └── ide │ │ │ ├── AbstractElkGraphIdeModule.java │ │ │ └── contentassist │ │ │ └── antlr │ │ │ ├── ElkGraphParser.java │ │ │ ├── PartialElkGraphContentAssistParser.java │ │ │ └── internal │ │ │ ├── InternalElkGraph.g │ │ │ ├── InternalElkGraph.tokens │ │ │ ├── InternalElkGraphLexer.java │ │ │ └── InternalElkGraphParser.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── text │ │ └── ide │ │ ├── ElkGraphIdeModule.xtend │ │ ├── ElkGraphIdeSetup.xtend │ │ └── contentassist │ │ └── ElkGraphProposalProvider.xtend ├── org.eclipse.elk.graph.text.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── elkedge.gif │ │ ├── elkgraph.gif │ │ ├── elklabel.gif │ │ ├── elknode.gif │ │ ├── elkport.gif │ │ ├── prop_choice.gif │ │ ├── prop_double.gif │ │ ├── prop_false.gif │ │ ├── prop_int.gif │ │ ├── prop_text.gif │ │ └── prop_true.gif │ ├── plugin.xml │ ├── plugin.xml_gen │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── graph │ │ │ └── text │ │ │ └── ui │ │ │ ├── AbstractElkGraphUiModule.java │ │ │ ├── ElkGraphExecutableExtensionFactory.java │ │ │ ├── contentassist │ │ │ └── AbstractElkGraphProposalProvider.java │ │ │ └── internal │ │ │ └── TextActivator.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── text │ │ └── ui │ │ ├── ConvertGraphHandler.xtend │ │ ├── ElkGraphTextUiActivator.xtend │ │ ├── ElkGraphUiModule.xtend │ │ ├── contentassist │ │ └── ElkGraphProposalProvider.xtend │ │ ├── labeling │ │ ├── ElkGraphDescriptionLabelProvider.xtend │ │ └── ElkGraphLabelProvider.xtend │ │ ├── layout │ │ ├── TextLayoutConnector.java │ │ └── TextLayoutSetup.java │ │ ├── outline │ │ └── ElkGraphOutlineTreeProvider.xtend │ │ └── quickfix │ │ └── ElkGraphQuickfixProvider.xtend ├── org.eclipse.elk.graph.text │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── pom.xml │ ├── src-gen │ │ └── org │ │ │ └── eclipse │ │ │ └── elk │ │ │ └── graph │ │ │ └── text │ │ │ ├── AbstractElkGraphRuntimeModule.java │ │ │ ├── ElkGraph.xtextbin │ │ │ ├── ElkGraphStandaloneSetupGenerated.java │ │ │ ├── parser │ │ │ └── antlr │ │ │ │ ├── ElkGraphAntlrTokenFileProvider.java │ │ │ │ ├── ElkGraphParser.java │ │ │ │ └── internal │ │ │ │ ├── InternalElkGraph.g │ │ │ │ ├── InternalElkGraph.tokens │ │ │ │ ├── InternalElkGraphLexer.java │ │ │ │ └── InternalElkGraphParser.java │ │ │ ├── scoping │ │ │ └── AbstractElkGraphScopeProvider.java │ │ │ ├── serializer │ │ │ ├── AbstractElkGraphSemanticSequencer.java │ │ │ └── AbstractElkGraphSyntacticSequencer.java │ │ │ ├── services │ │ │ └── ElkGraphGrammarAccess.java │ │ │ └── validation │ │ │ └── AbstractElkGraphValidator.java │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ └── text │ │ ├── ElkGraph.xtext │ │ ├── ElkGraphRuntimeModule.xtend │ │ ├── ElkGraphStandaloneSetup.xtend │ │ ├── ElkGraphTextUtil.xtend │ │ ├── GenerateElkGraph.mwe2 │ │ ├── conversion │ │ ├── ElkGraphValueConverterService.xtend │ │ ├── NumberValueConverter.xtend │ │ ├── PropertyKeyValueConverter.xtend │ │ └── PropertyValueValueConverter.xtend │ │ ├── formatting2 │ │ └── ElkGraphFormatter.xtend │ │ ├── linking │ │ └── ElkGraphLinker.xtend │ │ ├── naming │ │ ├── ElkGraphQualifiedNameConverter.xtend │ │ └── ElkGraphQualifiedNameProvider.xtend │ │ ├── scoping │ │ └── ElkGraphScopeProvider.xtend │ │ ├── serializer │ │ ├── ElkGraphSemanticSequencer.xtend │ │ ├── ElkGraphSyntacticSequencer.xtend │ │ └── ElkGraphTransientValueService.xtend │ │ └── validation │ │ ├── ElkGraphValidator.xtend │ │ └── IssueCodes.xtend ├── org.eclipse.elk.graph │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── model │ │ ├── elkgraph.ecore │ │ └── elkgraph.genmodel │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── elk │ │ └── graph │ │ ├── EMapPropertyHolder.java │ │ ├── ElkBendPoint.java │ │ ├── ElkConnectableShape.java │ │ ├── ElkEdge.java │ │ ├── ElkEdgeSection.java │ │ ├── ElkGraphElement.java │ │ ├── ElkGraphFactory.java │ │ ├── ElkGraphPackage.java │ │ ├── ElkLabel.java │ │ ├── ElkNode.java │ │ ├── ElkPersistentEntry.java │ │ ├── ElkPort.java │ │ ├── ElkShape.java │ │ ├── impl │ │ ├── EMapPropertyHolderImpl.java │ │ ├── ElkBendPointImpl.java │ │ ├── ElkConnectableShapeImpl.java │ │ ├── ElkEdgeImpl.java │ │ ├── ElkEdgeSectionImpl.java │ │ ├── ElkGraphElementImpl.java │ │ ├── ElkGraphFactoryImpl.java │ │ ├── ElkGraphPackageImpl.java │ │ ├── ElkLabelImpl.java │ │ ├── ElkNodeImpl.java │ │ ├── ElkPortImpl.java │ │ ├── ElkPropertyToValueMapEntryImpl.java │ │ └── ElkShapeImpl.java │ │ ├── properties │ │ ├── AdvancedPropertyValue.java │ │ ├── ExperimentalPropertyValue.java │ │ ├── GraphFeature.java │ │ ├── IProperty.java │ │ ├── IPropertyHolder.java │ │ ├── IPropertyValueProxy.java │ │ ├── MapPropertyHolder.java │ │ ├── Property.java │ │ └── PropertyHolderComparator.java │ │ └── util │ │ ├── ElkGraphAdapterFactory.java │ │ ├── ElkGraphSwitch.java │ │ ├── ElkGraphUtil.java │ │ ├── ElkReflect.java │ │ └── GraphIdentifierGenerator.java └── pom.xml ├── setups ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs └── EclipseLayoutKernel.setup └── test ├── .project ├── .settings └── org.eclipse.core.resources.prefs ├── org.eclipse.elk.alg.common.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── common │ ├── RectilinearConvexHullTest.java │ ├── compaction │ └── oned │ │ └── OneDimensionalCompactorTest.java │ ├── issues │ └── Issue475Test.java │ ├── networksimplex │ └── NetworkSimplexTest.java │ └── nodespacing │ ├── InsidePortLabelTest.java │ ├── NextToPortLabelPlacementTest.java │ ├── NodeMicroLayoutTest.java │ └── PortLabelPlacementVariantsTest.java ├── org.eclipse.elk.alg.disco.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.pde.core.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── disco │ └── test │ └── TwoBitGridTest.java ├── org.eclipse.elk.alg.force.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── force │ └── test │ └── ForceImportTest.java ├── org.eclipse.elk.alg.layered.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── layered │ ├── LayeredSpacingTest.java │ ├── OverallLayoutTest.java │ ├── TestGraphCreator.java │ ├── compaction │ ├── CompactionTest.java │ └── recthull │ │ └── RectlinearConvexHullTest.java │ ├── components │ └── ComponentGroupTest.java │ ├── intermediate │ ├── AllowNonFlowPortsToSwitchSidesTest.java │ ├── AlternatingLayerUnzipperTest.java │ ├── BasicConsiderModelOrderTest.java │ ├── CommentPostprocessorTest.java │ ├── ConcreteSortByInputModelTest.java │ ├── EdgeAndLayerConstraintEdgeReverserTest.java │ ├── EndLabelSorterTest.java │ ├── InLayerConstraintProcessorTest.java │ ├── InvertedPortProcessorTest.java │ ├── LabelAndNodeSizeProcessorOffsetTest.java │ ├── LabelDummyRemoverTest.java │ ├── LabelSideSelectorTest.java │ ├── LayerConstraintProcessorTest.java │ ├── LayerSizeAndGraphHeigthCalculatorTest.java │ ├── LongEdgeJoinerTest.java │ ├── LongEdgeSplitterTest.java │ ├── NodeMarginCalculatorTest.java │ ├── NodePromotionTest.java │ ├── NorthSouthPortPostprocessorTest.java │ ├── NorthSouthPortPreprocessorTest.java │ ├── PartitionPostProcessorTest.java │ ├── PartitionTest.java │ ├── PortListSorterTest.java │ ├── PortSideProcessorTest.java │ ├── ReversedEdgeRestorerTest.java │ ├── SelfLoopPreprocessorTest.java │ ├── SortByInputModelProcessorTest.java │ ├── greedyswitch │ │ ├── BetweenLayerEdgeTwoNodeCrossingsCounterTest.java │ │ ├── GreedySwitchProcessorTest.java │ │ ├── InLayerEdgeTestGraphCreator.java │ │ ├── InLayerEdgeTwoNodeCrossingCounterTest.java │ │ ├── NorthSouthEdgeNeighbouringNodeCrossingsCounterTest.java │ │ ├── NorthSouthEdgeTestGraphCreator.java │ │ ├── SwitchDeciderTest.java │ │ └── TestGraphCreator.java │ └── loops │ │ ├── SelfLoopHolderTest.java │ │ ├── SelfLoopTestGraphCreator.java │ │ └── routing │ │ └── PolylineSelfLoopRouterTest.java │ ├── issues │ ├── Issue143And318Test.java │ ├── Issue316Test.java │ ├── Issue405Test.java │ ├── Issue405_2Test.java │ ├── Issue433Test.java │ ├── Issue444Test.java │ ├── Issue445Test.java │ ├── Issue447Test.java │ ├── Issue455Test.java │ ├── Issue463Test.java │ ├── Issue471Test.java │ ├── Issue476Test.java │ ├── Issue502Test.java │ ├── Issue515Test.java │ ├── Issue541Test.java │ ├── Issue546Test.java │ ├── Issue548Test.java │ ├── Issue552Test.java │ ├── Issue562Test.java │ ├── Issue587Test.java │ ├── Issue596Test.java │ ├── Issue603Test.java │ ├── Issue628Test.java │ ├── Issue665Test.java │ ├── Issue680Test.java │ ├── Issue682Test.java │ ├── Issue700Test.java │ ├── Issue701Test.java │ ├── Issue726Test.java │ ├── Issue734Test.java │ ├── Issue870Test.java │ ├── Issue871Test.java │ └── Issue905Test.java │ ├── p1cycles │ └── BasicCycleBreakerTest.java │ ├── p2layers │ ├── BasicLayerAssignmentTest.java │ ├── BasicModelOrderTest.java │ └── ModelOrderLayerAssignmentTest.java │ ├── p3order │ ├── AbstractBarycenterPortDistributorTest.java │ ├── BarycenterHeuristicTest.java │ ├── BasicCrossingMinimizationTest.java │ ├── ForsterConstraintResolverTest.java │ ├── GreedyPortDistributorTest.java │ ├── LayerSweepCrossingMinimizerTest.java │ ├── LayerSweepHierarchicalTwoSidedGreedySwitchTest.java │ ├── LayerSweepTypeDeciderTest.java │ ├── ModelOrderBarycenterHeuristicTest.java │ └── counting │ │ ├── AllCrossingsCounterTest.java │ │ ├── BinaryIndexedTreeTest.java │ │ ├── CrossingsCounterTest.java │ │ └── NorthSouthEdgeAllCrossingsCounterTest.java │ ├── p4nodes │ └── BasicNodePlacementTest.java │ └── p5edges │ └── BasicEdgeRouterTest.java ├── org.eclipse.elk.alg.mrtree.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── mrtree │ └── test │ └── MrTreeGraphSizeTest.java ├── org.eclipse.elk.alg.radial.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.pde.core.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── radial │ └── test │ └── CenterOnRootTest.java ├── org.eclipse.elk.alg.rectpacking.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── rectpacking │ ├── CompactionTest.java │ ├── PaddingTest.java │ └── issues │ └── Issue583Test.java ├── org.eclipse.elk.alg.spore.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── spore │ └── test │ ├── ScanlineOverlapRemovalTest.java │ └── UtilsTest.java ├── org.eclipse.elk.alg.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.pde.core.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── test │ ├── GraphTestUtils.java │ ├── PlainJavaInitialization.java │ ├── framework │ ├── ExperimentRunner.java │ ├── ExperimentStatement.java │ ├── ExperimentalObject.java │ ├── LayoutTestRunner.java │ ├── WhiteboxRecorder.java │ ├── algorithm │ │ └── TestAlgorithm.java │ ├── annotations │ │ ├── Algorithm.java │ │ ├── Algorithms.java │ │ ├── AllAlgorithms.java │ │ ├── Configurator.java │ │ ├── ConfiguratorProvider.java │ │ ├── DefaultConfiguration.java │ │ ├── FailIfNotExecuted.java │ │ ├── GraphProvider.java │ │ ├── GraphResourceProvider.java │ │ ├── OnlyOnRootNode.java │ │ ├── RandomGeneratorFile.java │ │ ├── RandomGeneratorOptions.java │ │ ├── TestAfterProcessor.java │ │ ├── TestAfterProcessors.java │ │ ├── TestBeforeProcessor.java │ │ └── TestBeforeProcessors.java │ ├── config │ │ ├── ConfiguratorTestConfiguration.java │ │ ├── MethodTestConfiguration.java │ │ └── TestConfiguration.java │ ├── graph │ │ ├── GraphFromFile.java │ │ ├── GraphFromMethod.java │ │ ├── RandomGraphFromFile.java │ │ ├── RandomGraphFromMethod.java │ │ └── TestGraph.java │ ├── io │ │ ├── AbsoluteResourcePath.java │ │ ├── AbstractPropertyDependentResourcePath.java │ │ ├── AbstractResourcePath.java │ │ ├── BundleResourcePath.java │ │ ├── FileExtensionFilter.java │ │ ├── FileNameFilter.java │ │ ├── ModelResourcePath.java │ │ └── ResultsResourcePath.java │ └── util │ │ └── TestUtil.java │ └── tests │ ├── ConfiguratorProviderTest.java │ ├── ConfiguratorTest.java │ ├── IgnoredTest.java │ ├── PlainJavaInitializationTest.java │ └── WhiteBoxTest.java ├── org.eclipse.elk.alg.topdown.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── alg │ └── topdown │ ├── layered │ └── test │ │ └── PortPlacementCalculationTest.java │ └── test │ ├── TopdownLayoutTest.java │ └── TopdownPackingTest.java ├── org.eclipse.elk.core.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ ├── core │ ├── LayoutConfiguratorTest.java │ ├── RecursiveGraphLayoutEngineTest.java │ ├── alg │ │ ├── AlgorithmAssemblerTest.java │ │ ├── LayoutProcessorConfigurationTest.java │ │ ├── SpacingConfigurationTest.java │ │ ├── TestPhases.java │ │ └── TestProcessors.java │ ├── data │ │ ├── DeprecatedLayoutOptionReplacerTest.java │ │ └── LayoutDataContentAssistTest.java │ ├── issues │ │ ├── Issue457Test.java │ │ └── Issue489Test.java │ ├── math │ │ ├── BezierSplineTest.java │ │ ├── CubicSplineInterpolatorTest.java │ │ ├── ElkMathTest.java │ │ ├── KVectorChainTest.java │ │ └── KVectorTest.java │ ├── util │ │ └── ElkUtilTest.java │ └── validation │ │ ├── GraphValidatorTest.java │ │ └── LayoutOptionValidatorTest.java │ └── graph │ └── properties │ └── PropertyTest.java ├── org.eclipse.elk.graph.json.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.pde.core.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── graph │ └── json │ └── test │ ├── EdgeCoordsTest.xtend │ ├── EdgesTest.xtend │ ├── ExportTest.xtend │ ├── GraphTest.xtend │ ├── IdTest.java │ ├── IndividualSpacingsTest.xtend │ ├── LayoutOptionsTest.xtend │ ├── SectionsTest.xtend │ └── TransferLayoutTest.xtend ├── org.eclipse.elk.graph.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.pde.core.prefs ├── META-INF │ └── MANIFEST.MF ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── graph │ └── util │ └── ElkGraphUtilTest.java ├── org.eclipse.elk.shared.test ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── META-INF │ └── MANIFEST.MF ├── README.md ├── about.html ├── build.properties ├── pom.xml └── src │ └── org │ └── eclipse │ └── elk │ └── shared │ └── test │ ├── DirectLayoutTest.java │ ├── ElkLiveExamplesTest.java │ ├── ElkReflectTest.java │ └── PlainLayoutTest.java └── pom.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/elkjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.github/workflows/elkjs.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitpod/workspace-full 2 | 3 | RUN brew install hugo 4 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/DEPENDENCIES -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/config/.project -------------------------------------------------------------------------------- /config/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /config/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/config/checkstyle.xml -------------------------------------------------------------------------------- /docs/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/.project -------------------------------------------------------------------------------- /docs/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/blog/2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/2022.md -------------------------------------------------------------------------------- /docs/content/blog/2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/2023.md -------------------------------------------------------------------------------- /docs/content/blog/2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/2024.md -------------------------------------------------------------------------------- /docs/content/blog/2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/2025.md -------------------------------------------------------------------------------- /docs/content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/_index.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2022/22-08-31-rectpacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2022/22-08-31-rectpacking.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2022/22-11-17-libavoid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2022/22-11-17-libavoid.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2023/23-01-09-constraining-the-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2023/23-01-09-constraining-the-model.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2023/23-04-11-topdown-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2023/23-04-11-topdown-layout.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2024/24-12-06-layer-unzipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2024/24-12-06-layer-unzipping.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2025/25-08-21-layered.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2025/25-08-21-layered.md -------------------------------------------------------------------------------- /docs/content/blog/posts/2025/25-08-22-node-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/blog/posts/2025/25-08-22-node-labels.md -------------------------------------------------------------------------------- /docs/content/documentation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/_index.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers/algorithmdebugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers/algorithmdebugging.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers/creatinganewproject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers/creatinganewproject.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers/gettingeclipseready.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers/gettingeclipseready.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers/metadatalanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers/metadatalanguage.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers/randomgraphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers/randomgraphs.md -------------------------------------------------------------------------------- /docs/content/documentation/algorithmdevelopers/unittesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/algorithmdevelopers/unittesting.md -------------------------------------------------------------------------------- /docs/content/documentation/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/contributors.md -------------------------------------------------------------------------------- /docs/content/documentation/contributors/buildingelk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/contributors/buildingelk.md -------------------------------------------------------------------------------- /docs/content/documentation/contributors/developmentsetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/contributors/developmentsetup.md -------------------------------------------------------------------------------- /docs/content/documentation/contributors/developmentworkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/contributors/developmentworkflow.md -------------------------------------------------------------------------------- /docs/content/documentation/tooldevelopers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/tooldevelopers.md -------------------------------------------------------------------------------- /docs/content/documentation/tooldevelopers/graphdatastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/tooldevelopers/graphdatastructure.md -------------------------------------------------------------------------------- /docs/content/documentation/tooldevelopers/usingalgorithmsdirectly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/tooldevelopers/usingalgorithmsdirectly.md -------------------------------------------------------------------------------- /docs/content/documentation/tooldevelopers/usingeclipselayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/tooldevelopers/usingeclipselayout.md -------------------------------------------------------------------------------- /docs/content/documentation/tooldevelopers/usingplainjavalayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/documentation/tooldevelopers/usingplainjavalayout.md -------------------------------------------------------------------------------- /docs/content/downloads/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/_index.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.1.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.1.1.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.10.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.11.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.2.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.2.1.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.2.2.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.2.3.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.3.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.4.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.4.1.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.5.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.6.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.6.1.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.7.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.7.1.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.8.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.8.1.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.9.0.md -------------------------------------------------------------------------------- /docs/content/downloads/releasenotes/release-0.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/downloads/releasenotes/release-0.9.1.md -------------------------------------------------------------------------------- /docs/content/gettingstarted/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/gettingstarted/_index.md -------------------------------------------------------------------------------- /docs/content/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/reference/_index.md -------------------------------------------------------------------------------- /docs/content/reference/algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/reference/algorithms.md -------------------------------------------------------------------------------- /docs/content/reference/groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/reference/groups.md -------------------------------------------------------------------------------- /docs/content/reference/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/reference/options.md -------------------------------------------------------------------------------- /docs/content/support/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/content/support/_index.md -------------------------------------------------------------------------------- /docs/elk-logos.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/elk-logos.afdesign -------------------------------------------------------------------------------- /docs/elksite.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/elksite.sublime-project -------------------------------------------------------------------------------- /docs/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/index.html -------------------------------------------------------------------------------- /docs/layouts/partials/datalist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/partials/datalist.html -------------------------------------------------------------------------------- /docs/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/partials/header.html -------------------------------------------------------------------------------- /docs/layouts/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/partials/nav.html -------------------------------------------------------------------------------- /docs/layouts/partials/nav_recursive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/partials/nav_recursive.html -------------------------------------------------------------------------------- /docs/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/partials/navbar.html -------------------------------------------------------------------------------- /docs/layouts/reference/datalist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/reference/datalist.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/shortcodes/image.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/layouts/shortcodes/note.html -------------------------------------------------------------------------------- /docs/static/css/elk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/css/elk.css -------------------------------------------------------------------------------- /docs/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/css/prism.css -------------------------------------------------------------------------------- /docs/static/img/algdev_algorithmimplementation_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_algorithmimplementation_layout.png -------------------------------------------------------------------------------- /docs/static/img/algdev_creatinganewproject_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_creatinganewproject_project.png -------------------------------------------------------------------------------- /docs/static/img/algdev_creatinganewproject_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_creatinganewproject_step1.png -------------------------------------------------------------------------------- /docs/static/img/algdev_creatinganewproject_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_creatinganewproject_step2.png -------------------------------------------------------------------------------- /docs/static/img/algdev_creatinganewproject_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_creatinganewproject_step3.png -------------------------------------------------------------------------------- /docs/static/img/algdev_creatinganewproject_step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_creatinganewproject_step4.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layoutgraphview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layoutgraphview.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layoutgraphview_negativex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layoutgraphview_negativex.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layoutgraphview_negativey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layoutgraphview_negativey.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layoutgraphview_origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layoutgraphview_origin.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layoutgraphview_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layoutgraphview_small.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layoutlogview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layoutlogview.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_layouttimeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_layouttimeview.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_preferences.png -------------------------------------------------------------------------------- /docs/static/img/algdev_debug_viewcontextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/algdev_debug_viewcontextmenu.png -------------------------------------------------------------------------------- /docs/static/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/architecture.png -------------------------------------------------------------------------------- /docs/static/img/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/architecture.svg -------------------------------------------------------------------------------- /docs/static/img/architecture_phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/architecture_phases.png -------------------------------------------------------------------------------- /docs/static/img/cb-MO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cb-MO.svg -------------------------------------------------------------------------------- /docs/static/img/cb-greedy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cb-greedy.svg -------------------------------------------------------------------------------- /docs/static/img/cb-greedyMO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cb-greedyMO.svg -------------------------------------------------------------------------------- /docs/static/img/cm-enforceMO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cm-enforceMO.svg -------------------------------------------------------------------------------- /docs/static/img/cm-enforceNodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cm-enforceNodes.svg -------------------------------------------------------------------------------- /docs/static/img/cm-nodesAndEdges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cm-nodesAndEdges.svg -------------------------------------------------------------------------------- /docs/static/img/cm-preferEdges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cm-preferEdges.svg -------------------------------------------------------------------------------- /docs/static/img/cm-preferNodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cm-preferNodes.svg -------------------------------------------------------------------------------- /docs/static/img/cm-tiebreaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/cm-tiebreaker.svg -------------------------------------------------------------------------------- /docs/static/img/controller-topdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/controller-topdown.png -------------------------------------------------------------------------------- /docs/static/img/eclipse_foundation_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/eclipse_foundation_logo.svg -------------------------------------------------------------------------------- /docs/static/img/elk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/elk.svg -------------------------------------------------------------------------------- /docs/static/img/elk_fav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/elk_fav.svg -------------------------------------------------------------------------------- /docs/static/img/elk_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/elk_light.svg -------------------------------------------------------------------------------- /docs/static/img/elk_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/elk_small.svg -------------------------------------------------------------------------------- /docs/static/img/elk_small_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/elk_small_light.svg -------------------------------------------------------------------------------- /docs/static/img/elk_with_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/elk_with_text.svg -------------------------------------------------------------------------------- /docs/static/img/example_layout_complexRouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/example_layout_complexRouter.png -------------------------------------------------------------------------------- /docs/static/img/example_layout_complexRouter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/example_layout_complexRouter.svg -------------------------------------------------------------------------------- /docs/static/img/getting_started_layout_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/getting_started_layout_button.png -------------------------------------------------------------------------------- /docs/static/img/getting_started_layout_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/getting_started_layout_view.png -------------------------------------------------------------------------------- /docs/static/img/getting_started_layout_view_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/getting_started_layout_view_info.png -------------------------------------------------------------------------------- /docs/static/img/graph_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/graph_graph.png -------------------------------------------------------------------------------- /docs/static/img/graph_graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/graph_graph.svg -------------------------------------------------------------------------------- /docs/static/img/graph_inclusionTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/graph_inclusionTree.png -------------------------------------------------------------------------------- /docs/static/img/graph_inclusionTree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/graph_inclusionTree.svg -------------------------------------------------------------------------------- /docs/static/img/graph_metamodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/graph_metamodel.png -------------------------------------------------------------------------------- /docs/static/img/graph_metamodel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/graph_metamodel.svg -------------------------------------------------------------------------------- /docs/static/img/la-correct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/la-correct.svg -------------------------------------------------------------------------------- /docs/static/img/la.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/la.svg -------------------------------------------------------------------------------- /docs/static/img/layered-algorithm-structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/layered-algorithm-structure.svg -------------------------------------------------------------------------------- /docs/static/img/layout-reference-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/layout-reference-points.png -------------------------------------------------------------------------------- /docs/static/img/layout-reference-points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/layout-reference-points.svg -------------------------------------------------------------------------------- /docs/static/img/layout_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/layout_layers.png -------------------------------------------------------------------------------- /docs/static/img/layout_layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/layout_layers.svg -------------------------------------------------------------------------------- /docs/static/img/layout_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/layout_view.png -------------------------------------------------------------------------------- /docs/static/img/nodeLabelPlacement-asymmetrical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/nodeLabelPlacement-asymmetrical.svg -------------------------------------------------------------------------------- /docs/static/img/nodeLabelPlacement-bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/nodeLabelPlacement-bad.svg -------------------------------------------------------------------------------- /docs/static/img/nodeLabelPlacement-correct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/nodeLabelPlacement-correct.svg -------------------------------------------------------------------------------- /docs/static/img/nodeLabelPlacement-parent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/nodeLabelPlacement-parent.svg -------------------------------------------------------------------------------- /docs/static/img/nodeLabelPlacement-symmetrical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/nodeLabelPlacement-symmetrical.svg -------------------------------------------------------------------------------- /docs/static/img/oomph-install_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/oomph-install_step1.png -------------------------------------------------------------------------------- /docs/static/img/oomph-install_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/oomph-install_step2.png -------------------------------------------------------------------------------- /docs/static/img/oomph-install_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/oomph-install_step3.png -------------------------------------------------------------------------------- /docs/static/img/oomph-install_step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/oomph-install_step4.png -------------------------------------------------------------------------------- /docs/static/img/oomph-install_step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/oomph-install_step5.png -------------------------------------------------------------------------------- /docs/static/img/reel_debukviz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/reel_debukviz.jpg -------------------------------------------------------------------------------- /docs/static/img/reel_klassviz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/reel_klassviz.jpg -------------------------------------------------------------------------------- /docs/static/img/reel_ptolemy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/reel_ptolemy.jpg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-box-noexpand-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-box-noexpand-annotated.svg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-placement-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-placement-annotated.svg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-rectpacking-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-rectpacking-annotated.svg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-rectpacking-noexpand-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-rectpacking-noexpand-annotated.svg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-rectpacking-toaspectratio2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-rectpacking-toaspectratio2.svg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-subrows-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-subrows-annotated.svg -------------------------------------------------------------------------------- /docs/static/img/scchartsregions-widthapproximation-annotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/scchartsregions-widthapproximation-annotated.svg -------------------------------------------------------------------------------- /docs/static/img/top-down-scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/top-down-scaling.png -------------------------------------------------------------------------------- /docs/static/img/topdown-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/topdown-example.svg -------------------------------------------------------------------------------- /docs/static/img/wagon-topdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/img/wagon-topdown.png -------------------------------------------------------------------------------- /docs/static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/docs/static/js/prism.js -------------------------------------------------------------------------------- /features/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/.project -------------------------------------------------------------------------------- /features/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.algorithms.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.algorithms.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.gmf.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.gmf.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.graph.json.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graph.json.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.graphviz.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.graphviz.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.libavoid.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.libavoid.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.libavoid.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.libavoid.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.libavoid.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.libavoid.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.libavoid.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.libavoid.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.sdk.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.sdk.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/license.html -------------------------------------------------------------------------------- /features/org.eclipse.elk.ui.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/org.eclipse.elk.ui.feature/pom.xml -------------------------------------------------------------------------------- /features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/features/pom.xml -------------------------------------------------------------------------------- /plugins/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/.project -------------------------------------------------------------------------------- /plugins/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.common/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/.gitignore: -------------------------------------------------------------------------------- 1 | /**/vpproject/ 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/icons/discodebug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/icons/discodebug.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco.debug/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco.debug/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/.settings/org.eclipse.pde.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/images/Disco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/images/Disco.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/images/disco_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/images/disco_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/images/exampleDisco.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/images/exampleDisco.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.disco/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.disco/src/META-INF/services/org.eclipse.elk.core.data.ILayoutMetaDataProvider: -------------------------------------------------------------------------------- 1 | org.eclipse.elk.alg.disco.options.DisCoMetaDataProvider -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/images/Force.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/images/Force.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/images/Stress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/images/Stress.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/images/exampleForce.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/images/exampleForce.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/images/force_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/images/force_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/images/stress_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/images/stress_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.force/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.force/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.dot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.dot/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/Circo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/Circo.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/Dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/Dot.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/FDP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/FDP.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/Neato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/Neato.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/Twopi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/Twopi.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/circo_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/circo_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/dot_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/dot_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleCirco.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleCirco.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleDot.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleDot.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleFDP.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleFDP.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleNeato.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleNeato.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleTwopi.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/exampleTwopi.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/fdp_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/fdp_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/neato_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/neato_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/images/twopi_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/images/twopi_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.graphviz.layouter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.graphviz.layouter/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/docs/slopedEdgeZoneWidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/docs/slopedEdgeZoneWidth.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/docs/transformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/docs/transformation.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/images/Layered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/images/Layered.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/images/example.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/images/example.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/images/layered_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/images/layered_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.layered/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.layered/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/libavoid-server/libavoid-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/libavoid-server/libavoid-LICENSE -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.libavoid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.libavoid/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/images/MrTree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/images/MrTree.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/images/exampleTree.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/images/exampleTree.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/images/mrtree_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/images/mrtree_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.mrtree/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.mrtree/src/META-INF/services/org.eclipse.elk.core.data.ILayoutMetaDataProvider: -------------------------------------------------------------------------------- 1 | org.eclipse.elk.alg.mrtree.options.MrTreeMetaDataProvider -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/docs/images/EadesTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/docs/images/EadesTree.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/docs/images/EadesWedgeExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/docs/images/EadesWedgeExample.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/docs/images/Phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/docs/images/Phases.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/docs/images/RadialFinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/docs/images/RadialFinal.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/docs/radial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/docs/radial.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/images/Radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/images/Radial.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/images/exampleRadial.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/images/exampleRadial.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/images/radial_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/images/radial_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.radial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.radial/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/docs/packingstrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/docs/packingstrategy.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/docs/rectpacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/docs/rectpacking.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.rectpacking/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.rectpacking/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/docs/spore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/docs/spore.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/compaction-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/compaction-example.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/compaction-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/compaction-example.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/controller-ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/controller-ro.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/controller-ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/controller-ro.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/controller-ros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/controller-ros.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/controller-ros.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/controller-ros.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/exampleForce.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/exampleForce.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/overlap-removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/overlap-removal.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/overlap-removal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/overlap-removal.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/images/overlaps.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/images/overlaps.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.spore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.spore/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.topdownpacking/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.topdownpacking/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.topdownpacking/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.topdownpacking/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.topdownpacking/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.topdownpacking/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.topdownpacking/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/docs/vertiflex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/docs/vertiflex.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/images/vertiflex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/images/vertiflex.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.alg.vertiflex/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.alg.vertiflex/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/images/Draw2D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/images/Draw2D.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/images/draw2D_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/images/draw2D_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/images/draw2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/images/draw2d.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/images/exampleDraw2D.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/images/exampleDraw2D.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.conn.gmf/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.conn.gmf/src/META-INF/services/org.eclipse.elk.core.data.ILayoutMetaDataProvider: -------------------------------------------------------------------------------- 1 | org.eclipse.elk.conn.gmf.layouter.GmfMetaDataProvider -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ide/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ide/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ide/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ide/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ide/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ide/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom.ui/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug.grandom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug.grandom/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/clock.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/execution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/execution.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/expand_all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/expand_all.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/filter.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/graph.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/graph_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/graph_dot.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/graph_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/graph_json.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/import.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/log.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/no_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/no_log.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/preference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/preference.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/icons/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/icons/refresh.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.debug/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.debug/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/src-gen/META-INF/services/org.eclipse.xtext.ISetup: -------------------------------------------------------------------------------- 1 | org.eclipse.elk.core.meta.ide.MetaDataIdeSetup 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta.ui/templates/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta.ui/templates/templates.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/model/generated/MetaData.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/model/generated/MetaData.ecore -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/model/generated/MetaData.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/model/generated/MetaData.genmodel -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.meta/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.meta/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.service/schema/layoutConnectors.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.service/schema/layoutConnectors.exsd -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/error_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/error_overlay.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/menu16/arrange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/menu16/arrange.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/obj16/prop_choice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/obj16/prop_choice.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/obj16/prop_double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/obj16/prop_double.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/obj16/prop_false.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/obj16/prop_false.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/obj16/prop_int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/obj16/prop_int.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/obj16/prop_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/obj16/prop_text.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/obj16/prop_true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/obj16/prop_true.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/icons/view16/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/icons/view16/layout.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core.ui/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/.settings/org.eclipse.pde.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/about.ini -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/about.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/docs/sizeconstraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/docs/sizeconstraints.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/docs/sizeoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/docs/sizeoptions.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/docs/topdownlayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/docs/topdownlayout.md -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/Box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/Box.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/Random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/Random.svg -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/box_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/box_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/controller.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/exampleBox.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/exampleBox.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/exampleRandomizer.elkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/exampleRandomizer.elkt -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/hierarchical_parallel_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/hierarchical_parallel_example.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/mixed_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/mixed_example.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/random_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/random_layout.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/images/topdown_example_combined1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/images/topdown_example_combined1.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/modeling32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/modeling32.png -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/Core.melk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/Core.melk -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/math/ElkMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/math/ElkMath.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/math/KVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/math/KVector.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/math/Spacing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/math/Spacing.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/ElkUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/ElkUtil.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/Maybe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/Maybe.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/Pair.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/Triple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.core/src/org/eclipse/elk/core/util/Triple.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ide/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ide/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ide/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ide/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ide/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ide/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text.ui/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json.text/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json.text/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/.settings/org.eclipse.pde.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.json/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.json/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ide/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ide/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ide/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ide/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ide/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ide/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ide/src-gen/META-INF/services/org.eclipse.xtext.ISetup: -------------------------------------------------------------------------------- 1 | org.eclipse.elk.graph.text.ide.ElkGraphIdeSetup 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/elkedge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/elkedge.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/elkgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/elkgraph.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/elklabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/elklabel.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/elknode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/elknode.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/elkport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/elkport.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/prop_choice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/prop_choice.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/prop_double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/prop_double.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/prop_false.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/prop_false.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/prop_int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/prop_int.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/prop_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/prop_text.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/icons/prop_true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/icons/prop_true.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/plugin.xml_gen -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text.ui/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph.text/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph.text/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/model/elkgraph.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/model/elkgraph.ecore -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/model/elkgraph.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/model/elkgraph.genmodel -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkEdge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkEdge.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkLabel.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkNode.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkPort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkPort.java -------------------------------------------------------------------------------- /plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/org.eclipse.elk.graph/src/org/eclipse/elk/graph/ElkShape.java -------------------------------------------------------------------------------- /plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/plugins/pom.xml -------------------------------------------------------------------------------- /setups/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/setups/.project -------------------------------------------------------------------------------- /setups/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /setups/EclipseLayoutKernel.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/setups/EclipseLayoutKernel.setup -------------------------------------------------------------------------------- /test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/.project -------------------------------------------------------------------------------- /test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.common.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.common.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.disco.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.disco.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.force.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.force.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.layered.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.layered.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.layered.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.layered.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.layered.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.layered.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.layered.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.mrtree.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.mrtree.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.mrtree.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.mrtree.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.mrtree.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.mrtree.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.mrtree.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.radial.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.radial.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.radial.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.radial.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.radial.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.radial.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.radial.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.rectpacking.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.rectpacking.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.rectpacking.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.rectpacking.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.rectpacking.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.rectpacking.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.rectpacking.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.spore.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.spore.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.spore.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.spore.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.spore.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.spore.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.spore.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/.settings/org.eclipse.pde.core.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/README.md -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.topdown.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.topdown.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.topdown.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.topdown.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.topdown.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.alg.topdown.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.alg.topdown.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.core.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.core.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.json.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.json.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.json.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.json.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.json.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.json.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.json.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/.settings/org.eclipse.pde.core.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.graph.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.graph.test/pom.xml -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/.classpath -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/.project -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/README.md -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/about.html -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/build.properties -------------------------------------------------------------------------------- /test/org.eclipse.elk.shared.test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/org.eclipse.elk.shared.test/pom.xml -------------------------------------------------------------------------------- /test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-elk/elk/HEAD/test/pom.xml --------------------------------------------------------------------------------