This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Smart HeatMap (Numeric Gradient + Discrete) | |
| * * Version: 8.1 | |
| * * "VIBE CODED" with Gemini - it was quick, did it better than I could in the time I had, and seems to work... | |
| * * Changes: | |
| * - Added Multi-selection dialog for Scope (Components vs Relationships). | |
| * - Detects if a property is Numeric. | |
| * - If Numeric: Allows Min/Max color selection and generates a Gradient Heatmap. | |
| * - If Text (Discrete): Uses standard specific value coloring (limited to 10 unique values). | |
| * - Generates stepped legends for Gradients. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * This script attemps to import a draw.io (aka diagrams.net) diagram into an Archi model by | |
| * empirically mapping the observable attributes of the XML elements exported from draw.io to Archimate | |
| * elements and relationships. Please note that this mapping is fragile, because draw.io doesn't seem | |
| * to generate the XML attributes in a very consistent way; also, we must unfortunately use element color | |
| * as a key differentiator, to compensate for the lack of usable archimate information in the XML file. | |
| * All of this means that minor changes in the draw.io XML format can break the mapping... | |
| * Notes: | |
| * -- To generate the draw.io file, export it as an *uncompressed* XML file. | |
| * -- When running the script, make sure you have set the current model to import it in (e.g. by selecting a view in the model) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /**************************************** | |
| * Step by Step JArchi script examples * | |
| * v0.1 * | |
| * Francois Coudeville * | |
| * May 2021 #jArchi * | |
| * #Beginner #Guide #Tutorial #Example * | |
| ****************************************/ | |
| //--------- | |
| // 1 Utils |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@ts-check | |
| /** | |
| * Test of a dialog box in jarchi, SWT style | |
| */ | |
| /** | |
| * @typedef {any} JavaClass | |
| * @typedef {Object<string, function>} JavaObject | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |