├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── code-generator-utils.js ├── main.js ├── menus └── menu.json ├── package.json ├── preferences └── preference.json ├── ruby-code-generator.js └── test └── staruml-ruby-test.mdj /.gitignore: -------------------------------------------------------------------------------- 1 | # VIM auto-generated tag files 2 | tags 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to staruml-ruby 2 | 3 | Contributions to staruml-ruby are very welcome. Please, have a look through the 4 | guidelines in this file before submitting an issue or a pull request. 5 | 6 | ## Issues 7 | 8 | Use the [issue tracker][issuetracker] for reporting bugs, requesting new 9 | features, and discussing. If you want to submit an issue, 10 | 11 | * search the issue first to prevent double submission of issues. 12 | * the issue detail should be written clearly. 13 | 14 | ## Pull requests 15 | 16 | Follow these guidelines below. 17 | 18 | * use soft tabs that set to 2 spaces for the code. 19 | * test your code first to make sure the code is working properly. 20 | * commit message should contain what you changed. 21 | * choose `dev` branch as your target branch. 22 | * the pull request detail should be written for additional details. 23 | 24 | ## Useful Links 25 | 26 | Here below are some useful links for developing a StarUML extension. 27 | 28 | * [StarUML main page][staruml] 29 | * [StarUML developer's guide][starumldev] 30 | * [StarUML API reference][starumlapi] 31 | 32 | ## License 33 | 34 | By contributing your code, you agree to license your contribution under the 35 | terms of the [MIT License][license]. 36 | 37 | [issuetracker]: https://github.com/meisyal/staruml-ruby/issues 38 | [staruml]: http://staruml.io 39 | [starumldev]: https://docs.staruml.io/developing-extensions/getting-started 40 | [starumlapi]: http://staruml.io/reference/3.1.0/api 41 | [license]: https://github.com/meisyal/staruml-ruby/blob/master/LICENSE 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-2019 Andrias Meisyal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # staruml-ruby 2 | 3 | staruml-ruby is a Ruby extension for [StarUML][staruml]. This extension helps 4 | you to generate Ruby code from a UML class diagram. For example, you have a 5 | class called `Book`. 6 | 7 | ![Book class](https://res.cloudinary.com/daokp8cnd/image/upload/c_scale,w_155/v1540477871/staruml-ruby/book-class.png) 8 | 9 | staruml-ruby will generate code below: 10 | 11 | ```ruby 12 | class Book 13 | def initialize(name, price, qty) 14 | @name = name 15 | @price = price 16 | @qty = qty 17 | end 18 | 19 | private 20 | attr_accessor :name, :price, :qty 21 | 22 | def to_s 23 | "Your string representation of the object will be written here." 24 | end 25 | end 26 | ``` 27 | 28 | ## Current Status 29 | 30 | This extension currently supports generating Ruby code from a UML class diagram. 31 | Reverse engineering from Ruby code to a UML class diagram is not supported at 32 | the moment. 33 | 34 | Please, refer to [Supported UML concepts][umlconcept] page for futher details. 35 | 36 | ## Installation 37 | 38 | The simplest way to install staruml-ruby is from StarUML extension repository. 39 | This installation method is explained as follows: 40 | 41 | 1. Click **Tools** -> **Extension Manager...** on the menu bar of StarUML. 42 | The Extension Manager window will appear as a pop-up window. 43 | 2. Select **Registry** button. 44 | 3. Type `ruby` on search box. Ruby extension will appear. 45 | 4. Press **Install** button of Ruby extension. 46 | 47 | Note that internet connection is needed to perfom the installation. 48 | 49 | StarUML extension repository stores extensions that officially registered. 50 | Because of it, I **highly recommend** to use this installation method. 51 | Registered extensions are available on [this page][starumlextension]. 52 | 53 | See [Installation][installation] for other installation methods. 54 | 55 | ## Usage 56 | 57 | Prepare your model that contains a UML class diagram and then: 58 | 59 | 1. Click **Tools** -> **Ruby** -> **Generate Code...** on the menu bar of 60 | StarUML. A pop-up window will appear. 61 | 2. Choose a model that will be generated its code. And then, press **OK** 62 | button. 63 | 3. Select a location where the generated code will be stored. 64 | 4. Press **Open** button. 65 | 66 | ## Configuration 67 | 68 | You can configure the extension before generating the code. The configuration 69 | handles how the generated code looks like. Indentation of code and code comment, 70 | for example. This is supported by this extension to generate Ruby code, as 71 | you prefer. 72 | 73 | Check [Configuration][configuration] to configure the extension. 74 | 75 | ## Documentation 76 | 77 | Documentation is available at [staruml-ruby GitHub Wiki][wiki]. Documentation 78 | contains a lot more detail on examples, features, and roadmap. 79 | 80 | ## Contributing 81 | 82 | Contributions are welcome. Before submitting an issue or a pull request, please 83 | take a moment to look over the [contributing guidelines][contributing] first. 84 | 85 | ## License 86 | 87 | This extension is released under the terms of MIT License. See the 88 | [LICENSE][license] file for more details. 89 | 90 | Copyright © 2016-2019 Andrias Meisyal. 91 | 92 | 93 | 94 | [staruml]: http://staruml.io 95 | [umlconcept]: 96 | https://github.com/meisyal/staruml-ruby/wiki/Supported-UML-Concepts 97 | [starumlextension]: http://staruml.io/extensions 98 | [installation]: https://github.com/meisyal/staruml-ruby/wiki/Installation 99 | [configuration]: https://github.com/meisyal/staruml-ruby/wiki/Configuration 100 | [wiki]: https://github.com/meisyal/staruml-ruby/wiki 101 | [contributing]: 102 | https://github.com/meisyal/staruml-ruby/blob/master/CONTRIBUTING.md 103 | [LICENSE]: https://github.com/meisyal/staruml-ruby/blob/master/LICENSE 104 | -------------------------------------------------------------------------------- /code-generator-utils.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2016-2019 Andrias Meisyal. All rights reserved. 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a 5 | * copy of this software and associated documentation files (the "Software"), 6 | * to deal in the Software without restriction, including without limitation 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 | * and/or sell copies of the Software, and to permit persons to whom the 9 | * Software is furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 20 | * IN THE SOFTWARE. 21 | */ 22 | 23 | /* 24 | * CodeWriter 25 | */ 26 | class CodeWriter { 27 | /* 28 | * @constructor 29 | * 30 | * @param {string} indentString 31 | */ 32 | constructor (indentString) { 33 | // @member {Array.} lines 34 | this.lines = [] 35 | // @member {string} indentString 36 | this.indentString = indentString || ' ' // default 4 spaces 37 | // @member {Array.} indentations 38 | this.indentations = [] 39 | } 40 | 41 | /* 42 | * Indent 43 | */ 44 | indent () { 45 | this.indentations.push(this.indentString) 46 | } 47 | 48 | /* 49 | * Outdent 50 | */ 51 | outdent () { 52 | this.indentations.splice(this.indentations.length - 1, 1) 53 | } 54 | 55 | /* 56 | * Write a line 57 | * @param {string} line 58 | */ 59 | writeLine (line) { 60 | if (line) { 61 | this.lines.push(this.indentations.join('') + line) 62 | } else { 63 | this.lines.push('') 64 | } 65 | } 66 | 67 | /* 68 | * Return as all string data 69 | * @return {string} line 70 | */ 71 | getData () { 72 | return this.lines.join('\n') 73 | } 74 | 75 | /* 76 | * Return file name by converting class name to snack case 77 | * @param {string} class name 78 | * @return {string} file name 79 | */ 80 | getFileName (className) { 81 | return className.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase() 82 | } 83 | 84 | /* 85 | * Convert class name to camel case 86 | * @param {string} class name 87 | * @return {string} converted class name 88 | */ 89 | toCamelCase (className) { 90 | return className.replace(/(\b|_)\w/g, function (match) { 91 | return match.replace(/_/, '').toUpperCase() 92 | }) 93 | } 94 | } 95 | 96 | exports.CodeWriter = CodeWriter 97 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2016-2019 Andrias Meisyal. All rights reserved. 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a 5 | * copy of this software and associated documentation files (the "Software"), 6 | * to deal in the Software without restriction, including without limitation 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 | * and/or sell copies of the Software, and to permit persons to whom the 9 | * Software is furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 20 | * IN THE SOFTWARE. 21 | */ 22 | 23 | const RubyCodeGenerator = require('./ruby-code-generator') 24 | 25 | function getGeneratorOptions () { 26 | return { 27 | useTab: app.preferences.get('ruby.generator.useTab'), 28 | indentSpaces: app.preferences.get('ruby.generator.indentSpaces'), 29 | initializeMethod: app.preferences.get('ruby.generator.initializeMethod'), 30 | toStringMethod: app.preferences.get('ruby.generator.toStringMethod'), 31 | documentation: app.preferences.get('ruby.generator.documentation') 32 | } 33 | } 34 | 35 | function showOpenDialog(base, path, options) { 36 | if (!path) { 37 | var files = app.dialogs.showOpenDialog('Select a folder where generated codes to be located', null, null, { properties: ['openDirectory']}) 38 | if (files && files.length > 0) { 39 | path = files[0] 40 | RubyCodeGenerator.generate(base, path, options) 41 | } 42 | } else { 43 | RubyCodeGenerator.generate(base, path, options) 44 | } 45 | } 46 | 47 | /* 48 | * Command Handler for Ruby Generate 49 | * 50 | * @param {Element} base 51 | * @param {string} path 52 | * @param {Object} options 53 | * @return {$.Promise} 54 | */ 55 | function _handleGenerate (base, path, options) { 56 | // If options is not passed, get from preference 57 | options = options || getGeneratorOptions() 58 | // If base is not assigned, popup ElementPicker 59 | if (!base) { 60 | app.elementPickerDialog.showDialog('Select a base model to generate codes', null, type.UMLPackage).then(function ({buttonId, returnValue}) { 61 | if (buttonId === 'ok') { 62 | base = returnValue 63 | showOpenDialog(base, path, options) 64 | } 65 | }) 66 | } else { 67 | // If path is not assigned, popup Open Dialog to select a folder 68 | if (!path) { 69 | showOpenDialog(base, path, options) 70 | } 71 | } 72 | } 73 | 74 | /* 75 | * Popup PreferenceDialog with Ruby Preference Schema 76 | */ 77 | function _handleConfigure () { 78 | app.commands.execute('application:preferences', 'ruby') 79 | } 80 | 81 | function init () { 82 | app.commands.register('ruby:generate', _handleGenerate) 83 | app.commands.register('ruby:configure', _handleConfigure) 84 | } 85 | 86 | exports.init = init 87 | -------------------------------------------------------------------------------- /menus/menu.json: -------------------------------------------------------------------------------- 1 | { 2 | "menu": [ 3 | { 4 | "id": "tools", 5 | "submenu": [ 6 | { 7 | "label": "Ruby", 8 | "id": "tools.ruby", 9 | "submenu": [ 10 | { "label": "Generate Code...", "id": "tools.ruby.generate", "command": "ruby:generate" }, 11 | { "type": "separator" }, 12 | { "label": "Configure...", "id": "tools.ruby.configure", "command": "ruby:configure" } 13 | ] 14 | } 15 | ] 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "meisyal.starumlruby", 3 | "title": "Ruby", 4 | "description": "Ruby code generation.", 5 | "homepage": "https://github.com/meisyal/staruml-ruby", 6 | "issues": "https://github.com/meisyal/staruml-ruby/issues", 7 | "keywords": ["ruby"], 8 | "version": "0.1.9", 9 | "author": { 10 | "name": "Andrias Meisyal", 11 | "email": "andriasonline@gmail.com", 12 | "url": "https://github.com/meisyal" 13 | }, 14 | "license": "MIT", 15 | "engines": { 16 | "staruml": "^3.0.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /preferences/preference.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "ruby", 3 | "name": "Ruby", 4 | "schema": { 5 | "ruby.generator": { 6 | "text": "Ruby Code Generation", 7 | "type": "section" 8 | }, 9 | "ruby.generator.useTab": { 10 | "text": "Use Tab", 11 | "description": "Use tab for indentation instead of spaces.", 12 | "type": "check", 13 | "default": false 14 | }, 15 | "ruby.generator.indentSpaces": { 16 | "text": "Indent Spaces", 17 | "description": "Number of spaces for indentation.", 18 | "type": "number", 19 | "default": 2 20 | }, 21 | "ruby.generator.initializeMethod": { 22 | "text": "The initialize method", 23 | "description": "Generate initialize method that works almost same way as constructor.", 24 | "type": "check", 25 | "default": true 26 | }, 27 | "ruby.generator.toStringMethod": { 28 | "text": "The to_s method", 29 | "description": "Generate to_s method that returns a string representation of the object.", 30 | "type": "check", 31 | "default": true 32 | }, 33 | "ruby.generator.documentation": { 34 | "text": "Documentation", 35 | "description": "Generate documentation of class elements.", 36 | "type": "check", 37 | "default": true 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /ruby-code-generator.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2016-2019 Andrias Meisyal. All rights reserved. 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a 5 | * copy of this software and associated documentation files (the "Software"), 6 | * to deal in the Software without restriction, including without limitation 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 | * and/or sell copies of the Software, and to permit persons to whom the 9 | * Software is furnished to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in 12 | * all copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 20 | * IN THE SOFTWARE. 21 | */ 22 | 23 | const filesystem = require('fs') 24 | const path = require('path') 25 | const codegenutils = require('./code-generator-utils') 26 | 27 | /* 28 | * Ruby Code Generator 29 | */ 30 | class RubyCodeGenerator { 31 | /* 32 | * @constructor 33 | * 34 | * @param {type.UMLPackage} baseModel 35 | * @param {string} basePath generated files and directories to be placed 36 | */ 37 | constructor (baseModel, basePath) { 38 | // @member {type.Model} 39 | this.baseModel = baseModel 40 | // @member {string} 41 | this.basePath = basePath 42 | } 43 | 44 | /* 45 | * Return indent string based on options 46 | * @param {Object} options 47 | * @return {string} 48 | */ 49 | getIndentString (options) { 50 | if (options.useTab) { 51 | return '\t' 52 | } else { 53 | var indent = [] 54 | var length = options.indentSpaces 55 | for (var i = 0; i < length; i++) { 56 | indent.push(' ') 57 | } 58 | 59 | return indent.join('') 60 | } 61 | } 62 | 63 | /* 64 | * Generate codes from a given element 65 | * @param {type.Model} element 66 | * @param {string} basePath 67 | * @param {Object} options 68 | */ 69 | generate (element, basePath, options) { 70 | var fullPath 71 | var codeWriter = new codegenutils.CodeWriter(this.getIndentString(options)) 72 | var deleteFolderRecursive = function (path) { 73 | if (filesystem.existsSync(path)) { 74 | filesystem.readdirSync(path).forEach(function (file, index) { 75 | var currentPath = path + '/' + file 76 | 77 | if (filesystem.lstatSync(currentPath).isDirectory()) { 78 | deleteFolderRecursive(currentPath) 79 | } else { 80 | filesystem.unlinkSync(currentPath) 81 | } 82 | }) 83 | 84 | filesystem.rmdirSync(path) 85 | } 86 | } 87 | 88 | // UML Package 89 | if (element instanceof type.UMLPackage) { 90 | fullPath = path.join(basePath, element.name) 91 | 92 | if (!filesystem.existsSync(fullPath)) { 93 | filesystem.mkdirSync(fullPath) 94 | } else { 95 | var buttonId = app.dialogs.showConfirmDialog('A folder with same name already exists, do you want to overwrite?') 96 | if (buttonId === 'ok') { 97 | deleteFolderRecursive(fullPath) 98 | filesystem.mkdirSync(fullPath) 99 | app.dialogs.showInfoDialog('A folder overwritten.') 100 | } else { 101 | app.dialogs.showErrorDialog('Operation is cancelled by user.') 102 | } 103 | } 104 | 105 | if (Array.isArray(element.ownedElements)) { 106 | element.ownedElements.forEach(child => { 107 | return this.generate(child, fullPath, options) 108 | }) 109 | } 110 | // UML Class 111 | } else if (element instanceof type.UMLClass) { 112 | // Class element 113 | if (element.stereotype !== 'annotationType') { 114 | var moduleName = this.getPackageName(element) 115 | 116 | if (moduleName) { 117 | this.writeAssociation(codeWriter, element, true) 118 | this.writeDocumentation(codeWriter, element._parent.documentation, options) 119 | codeWriter.writeLine('module ' + moduleName) 120 | codeWriter.indent() 121 | } else { 122 | this.writeAssociation(codeWriter, element, false) 123 | } 124 | 125 | this.writeClass(codeWriter, element, options) 126 | 127 | if (moduleName) { 128 | codeWriter.outdent() 129 | codeWriter.writeLine('end') 130 | } 131 | 132 | fullPath = basePath + '/' + codeWriter.getFileName(element.name) + '.rb' 133 | filesystem.writeFileSync(fullPath, codeWriter.getData()) 134 | } 135 | // Interface element 136 | } else if (element instanceof type.UMLInterface) { 137 | this.writeInterface(codeWriter, element, options) 138 | 139 | fullPath = basePath + '/' + codeWriter.getFileName(element.name) + '.rb' 140 | filesystem.writeFileSync(fullPath, codeWriter.getData()) 141 | } 142 | } 143 | 144 | /* 145 | * Return visibility 146 | * @param {type.Model} element 147 | * @return {string} 148 | */ 149 | getVisibility (element) { 150 | switch (element.visibility) { 151 | case type.UMLModelElement.VK_PUBLIC: 152 | return 'public' 153 | case type.UMLModelElement.VK_PROTECTED: 154 | return 'protected' 155 | case type.UMLModelElement.VK_PRIVATE: 156 | return 'private' 157 | } 158 | 159 | return null 160 | } 161 | 162 | /* 163 | * Return package name 164 | * @param {type.Model} element 165 | * @return {string} 166 | */ 167 | getPackageName (element) { 168 | var packagePath = null 169 | 170 | if (element._parent) { 171 | packagePath = element._parent.getPath(this.baseModel).map(function (e) { 172 | return e.name 173 | }).join('.') 174 | } 175 | 176 | return packagePath 177 | } 178 | 179 | /* 180 | * Collect super classes of a given element 181 | * @param {type.Model} element 182 | * @retun {Array.} 183 | */ 184 | getSuperClasses (element) { 185 | var inheritances = app.repository.getRelationshipsOf(element, function (relationship) { 186 | return (relationship instanceof type.UMLGeneralization && relationship.source === element) 187 | }) 188 | 189 | return inheritances.map(function (inherit) { 190 | return inherit.target 191 | }) 192 | } 193 | 194 | /* 195 | * Collect associated classes of a given element 196 | * @param {type.Model} element 197 | * @return {Array.} 198 | */ 199 | getAssociation (element) { 200 | var associations = app.repository.getRelationshipsOf(element, function (relationship) { 201 | return (relationship instanceof type.UMLAssociation) 202 | }) 203 | 204 | return associations 205 | } 206 | 207 | /* 208 | * Collect interface classes of a given element 209 | * @param {type.Model} element 210 | * @return {Array.} 211 | */ 212 | getInterface (element) { 213 | var interfaces = app.repository.getRelationshipsOf(element, function (relationship) { 214 | return (relationship instanceof type.UMLInterfaceRealization && relationship.source === element) 215 | }) 216 | 217 | return interfaces.map(function (implement) { 218 | return implement.target 219 | }) 220 | } 221 | 222 | /* 223 | * Write association classes 224 | * @param {StringWriter} codeWriter 225 | * @param {type.Model} element 226 | * @param {boolean} isInModule 227 | */ 228 | writeAssociation (codeWriter, element, isInModule) { 229 | var associations = this.getAssociation(element) 230 | 231 | for (var i = 0; i < associations.length; i++) { 232 | var association = associations[i] 233 | var packageName 234 | var fileName 235 | 236 | if (association.end1.reference === element && association.end2.navigable === true) { 237 | packageName = codeWriter.getFileName(this.getPackageName(association.end2.reference)) 238 | fileName = codeWriter.getFileName(association.end2.reference.name) 239 | } else if (association.end2.reference === element && association.end1.navigable === true) { 240 | packageName = codeWriter.getFileName(this.getPackageName(association.end1.reference)) 241 | fileName = codeWriter.getFileName(association.end1.reference.name) 242 | } 243 | 244 | if (packageName) { 245 | codeWriter.writeLine('require_relative \'' + packageName + '/' + fileName + '.rb\'') 246 | } else if (isInModule) { 247 | codeWriter.writeLine('require_relative \'../' + fileName + '.rb\'') 248 | } else { 249 | codeWriter.writeLine('require_relative \'' + fileName + '.rb\'') 250 | } 251 | } 252 | 253 | if (associations.length) { 254 | codeWriter.writeLine() 255 | } 256 | } 257 | 258 | /* 259 | * Write documentation 260 | * @param {StringWriter} codeWriter 261 | * @param {string} text that contains documentation 262 | * @param {Object} options 263 | */ 264 | writeDocumentation (codeWriter, text, options) { 265 | var lines 266 | 267 | if (options.documentation && text.trim().length) { 268 | lines = text.trim().split('\n') 269 | if (lines > 1) { 270 | codeWriter.writeLine('#') 271 | for (var i = 0; i < lines.length; i++) { 272 | codeWriter.writeLine(' ' + lines[i]) 273 | } 274 | } else { 275 | codeWriter.writeLine('# ' + lines[0]) 276 | } 277 | } 278 | } 279 | 280 | /* 281 | * Write constructor 282 | * @param {StringWriter} codeWriter 283 | * @param {type.Model} element 284 | */ 285 | writeConstructor (codeWriter, element) { 286 | if (element.name.length) { 287 | var terms = [] 288 | var len = element.attributes.length 289 | 290 | terms.push('def initialize(') 291 | for (var i = 0; i < len; i++) { 292 | if (!element.attributes[i].isStatic) { 293 | terms.push(element.attributes[i].name) 294 | 295 | if (element.attributes[i].defaultValue) { 296 | terms.push('=') 297 | terms.push(element.attributes[i].defaultValue) 298 | } 299 | 300 | terms.push(', ') 301 | } 302 | } 303 | 304 | if (terms.length > 1) { 305 | terms.pop() 306 | } 307 | 308 | codeWriter.writeLine(terms.join('') + ')') 309 | codeWriter.indent() 310 | for (var i = 0; i < len; i++) { 311 | if (!element.attributes[i].isStatic) { 312 | codeWriter.writeLine('@' + element.attributes[i].name + ' = ' + 313 | element.attributes[i].name) 314 | } 315 | } 316 | 317 | var associations = this.getClassAssociation(codeWriter, element) 318 | if (associations.length) { 319 | for (var i = 0; i < associations.length; i++) { 320 | codeWriter.writeLine('@' + associations[i] + ' = ' + 321 | codeWriter.toCamelCase(associations[i]) + '.new') 322 | } 323 | } 324 | 325 | codeWriter.outdent() 326 | codeWriter.writeLine('end') 327 | } 328 | } 329 | 330 | /* 331 | * Write attribute accessor 332 | * @param {string} visibility 333 | * @param {StringWriter} codeWriter 334 | * @param {type.Model} element 335 | * @param {Object} options 336 | */ 337 | writeAttributeAccessor (visibility, codeWriter, element, options) { 338 | var readerAttributeTerms = [] 339 | var accessorAttributeTerms = [] 340 | var len = element.attributes.length 341 | var attributeVisibility 342 | 343 | for (var i = 0; i < len; i++) { 344 | attributeVisibility = this.getVisibility(element.attributes[i]) 345 | 346 | if (attributeVisibility === visibility && !element.attributes[i].isStatic) { 347 | this.writeDocumentation(codeWriter, element.attributes[i].documentation, options) 348 | 349 | if (element.attributes[i].isReadOnly) { 350 | readerAttributeTerms.push(':' + element.attributes[i].name) 351 | readerAttributeTerms.push(', ') 352 | } else { 353 | accessorAttributeTerms.push(':' + element.attributes[i].name) 354 | accessorAttributeTerms.push(', ') 355 | } 356 | } 357 | } 358 | 359 | if (accessorAttributeTerms.length > 1) { 360 | accessorAttributeTerms.pop() 361 | codeWriter.writeLine('attr_accessor ' + accessorAttributeTerms.join('')) 362 | } 363 | 364 | if (readerAttributeTerms.length > 1) { 365 | readerAttributeTerms.pop() 366 | codeWriter.writeLine('attr_reader ' + readerAttributeTerms.join('')) 367 | } 368 | } 369 | 370 | /* 371 | * Write constant 372 | * @param {StringWriter} codeWriter 373 | * @param {type.Model} element 374 | */ 375 | writeConstant (codeWriter, element) { 376 | var len = element.attributes.length 377 | 378 | for (var i = 0; i < len; i++) { 379 | if (element.attributes[i].isReadOnly && element.attributes[i].isStatic) { 380 | codeWriter.writeLine(element.attributes[i].name + ' = ' + 381 | element.attributes[i].defaultValue) 382 | if (this.getVisibility(element.attributes[i]) === 'private') { 383 | codeWriter.writeLine('private_constant :' + element.attributes[i].name) 384 | } 385 | } 386 | } 387 | } 388 | 389 | /* 390 | * Write class variables 391 | * @param {StringWriter} codeWriter 392 | * @param {type.Model} element 393 | */ 394 | writeClassVariable (codeWriter, element) { 395 | var len = element.attributes.length 396 | 397 | for (var i = 0; i < len; i++) { 398 | if (!element.attributes[i].isReadOnly && element.attributes[i].isStatic) { 399 | codeWriter.writeLine('@@' + element.attributes[i].name + ' = ' + 400 | element.attributes[i].defaultValue) 401 | } 402 | } 403 | } 404 | 405 | /* 406 | * Write methods 407 | * @param {string} visibility 408 | * @param {StringWriter} codeWriter 409 | * @param {type.Model} element 410 | * @param {Object} options 411 | */ 412 | writeMethod (visibility, codeWriter, element, options) { 413 | var len = element.operations.length 414 | var terms = [] 415 | 416 | for (var i = 0; i < len; i++) { 417 | var methodVisibility = this.getVisibility(element.operations[i]) 418 | var parameters = element.operations[i].getNonReturnParameters() 419 | var parametersLength = parameters.length 420 | 421 | if (methodVisibility === visibility) { 422 | this.writeDocumentation(codeWriter, element.operations[i].documentation, options) 423 | terms.push('def ' + element.operations[i].name) 424 | if (parametersLength !== 0) { 425 | terms.push('(') 426 | for (var j = 0; j < parametersLength; j++) { 427 | terms.push(parameters[j].name) 428 | if (j !== parametersLength - 1) { 429 | terms.push(', ') 430 | } else { 431 | terms.push(')') 432 | } 433 | } 434 | } 435 | 436 | codeWriter.writeLine(terms.join('')) 437 | terms.length = 0 438 | 439 | codeWriter.indent() 440 | codeWriter.writeLine('# TODO(person name): Implement this method here.') 441 | codeWriter.outdent() 442 | codeWriter.writeLine('end') 443 | 444 | if (i !== len - 1) { 445 | codeWriter.writeLine() 446 | } 447 | } 448 | } 449 | } 450 | 451 | /* 452 | * Write method by its visibility 453 | * @param {StringWriter} codeWriter 454 | * @param {type.Model} element 455 | * @param {Object} options 456 | */ 457 | writeMethodByVisibility (codeWriter, element, options) { 458 | var attributeCount = this.countAttributeByVisibility(element) 459 | var methodCount = this.countMethodByVisibility(element) 460 | var protectedAttributeLength = attributeCount[1] 461 | var privateAttributeLength = attributeCount[2] 462 | var publicMethodLength = methodCount[0] 463 | var protectedMethodLength = methodCount[1] 464 | var privateMethodLength = methodCount[2] 465 | 466 | if (publicMethodLength) { 467 | codeWriter.indent() 468 | this.writeMethod('public', codeWriter, element, options) 469 | codeWriter.outdent() 470 | } 471 | 472 | if (protectedAttributeLength || protectedMethodLength) { 473 | codeWriter.indent() 474 | codeWriter.writeLine('protected') 475 | codeWriter.indent() 476 | if (protectedAttributeLength) { 477 | this.writeAttributeAccessor('protected', codeWriter, element, options) 478 | codeWriter.writeLine() 479 | } 480 | 481 | codeWriter.outdent() 482 | if (protectedMethodLength) { 483 | codeWriter.indent() 484 | this.writeMethod('protected', codeWriter, element, options) 485 | codeWriter.outdent() 486 | } 487 | 488 | codeWriter.outdent() 489 | } 490 | 491 | if (privateAttributeLength || privateMethodLength) { 492 | codeWriter.indent() 493 | codeWriter.writeLine('private') 494 | codeWriter.indent() 495 | if (privateAttributeLength) { 496 | this.writeAttributeAccessor('private', codeWriter, element, options) 497 | codeWriter.writeLine() 498 | } 499 | 500 | codeWriter.outdent() 501 | if (privateMethodLength) { 502 | codeWriter.indent() 503 | this.writeMethod('private', codeWriter, element, options) 504 | codeWriter.outdent() 505 | } 506 | 507 | codeWriter.outdent() 508 | } 509 | } 510 | 511 | /* 512 | * Count attribute by its visibility 513 | * @param {type.Model} element 514 | */ 515 | countAttributeByVisibility (element) { 516 | var publicElementCount = 0 517 | var protectedElementCount= 0 518 | var privateElementCount = 0 519 | var len = element.attributes.length 520 | var elementVisibility 521 | var attributeCount = [] 522 | 523 | for (var i = 0; i < len; i++) { 524 | elementVisibility = this.getVisibility(element.attributes[i]) 525 | 526 | if (elementVisibility === 'public' && !element.attributes[i].isStatic) { 527 | publicElementCount++ 528 | } else if (elementVisibility === 'protected') { 529 | protectedElementCount++ 530 | } else if (elementVisibility === 'private' && !element.attributes[i].isStatic) { 531 | privateElementCount++ 532 | } 533 | } 534 | 535 | attributeCount[0] = publicElementCount 536 | attributeCount[1] = protectedElementCount 537 | attributeCount[2] = privateElementCount 538 | 539 | return attributeCount 540 | } 541 | 542 | /* 543 | * Count static attributes 544 | * @param {type.Model} element 545 | */ 546 | countStaticAttribute (element) { 547 | var staticAttributeCount = 0 548 | var len = element.attributes.length 549 | 550 | for (var i = 0; i < len; i++) { 551 | if (element.attributes[i].isStatic) { 552 | staticAttributeCount++ 553 | } 554 | } 555 | 556 | return staticAttributeCount 557 | } 558 | 559 | /* 560 | * Count method by its visibility 561 | * @param {type.Model} element 562 | */ 563 | countMethodByVisibility (element) { 564 | var publicMethodCount = 0 565 | var protectedMethodCount = 0 566 | var privateMethodCount = 0 567 | var len = element.operations.length 568 | var methodVisibility 569 | var methodCount = [] 570 | 571 | for (var i = 0; i < len; i++) { 572 | methodVisibility = this.getVisibility(element.operations[i]) 573 | 574 | if (methodVisibility === 'public') { 575 | publicMethodCount++ 576 | } else if (methodVisibility === 'protected') { 577 | protectedMethodCount++ 578 | } else if (methodVisibility === 'private') { 579 | privateMethodCount++ 580 | } 581 | } 582 | 583 | methodCount[0] = publicMethodCount 584 | methodCount[1] = protectedMethodCount 585 | methodCount[2] = privateMethodCount 586 | 587 | return methodCount 588 | } 589 | 590 | /* 591 | * Get class associations 592 | * @param {StringWriter} codeWriter 593 | * @param {type.Model} element 594 | * @return {Array.} 595 | */ 596 | getClassAssociation (codeWriter, element) { 597 | var classAssociations = [] 598 | var associations = this.getAssociation(element) 599 | 600 | for (var i = 0; i < associations.length; i++) { 601 | var association = associations[i] 602 | 603 | if (association.end1.reference === element && association.end2.navigable === true) { 604 | classAssociations.push(codeWriter.getFileName(association.end2.reference.name)) 605 | } 606 | 607 | if (association.end2.reference === element && association.end1.navigable === true) { 608 | classAssociations.push(codeWriter.getFileName(association.end1.reference.name)) 609 | } 610 | } 611 | 612 | return classAssociations 613 | } 614 | 615 | /* 616 | * Write to_s method 617 | * @param {StringWriter} 618 | */ 619 | writeToStringMethod (codeWriter) { 620 | codeWriter.indent() 621 | codeWriter.writeLine('def to_s') 622 | codeWriter.indent() 623 | codeWriter.writeLine('\"Your string representation of the object will be written here.\"') 624 | codeWriter.outdent() 625 | codeWriter.writeLine('end') 626 | } 627 | 628 | /* 629 | * Write interfaces 630 | * @param {StringWriter} codeWriter 631 | * @param {type.Model} element 632 | * @param {Object} options 633 | */ 634 | writeInterface (codeWriter, element, options) { 635 | var terms = [] 636 | 637 | terms.push('module') 638 | terms.push(element.name) 639 | 640 | codeWriter.writeLine(terms.join(' ')) 641 | this.writeMethodByVisibility(codeWriter, element, options) 642 | codeWriter.writeLine('end') 643 | } 644 | 645 | /* 646 | * Write classes 647 | * @param {StringWriter} codeWriter 648 | * @param {type.Model} element 649 | * @param {Object} options 650 | */ 651 | writeClass (codeWriter, element, options) { 652 | var terms = [] 653 | var staticAttributeCount = this.countStaticAttribute(element) 654 | 655 | var _inheritance = this.getSuperClasses(element) 656 | if (_inheritance.length) { 657 | var fileName = codeWriter.getFileName(_inheritance[0].name) 658 | 659 | codeWriter.writeLine('require_relative \'' + fileName + '.rb\'') 660 | codeWriter.writeLine() 661 | } 662 | 663 | var _interface = this.getInterface(element) 664 | if (_interface.length) { 665 | var packageName = codeWriter.getFileName(this.getPackageName(_interface[0])) 666 | var fileName = codeWriter.getFileName(_interface[0].name) 667 | 668 | if (packageName) { 669 | codeWriter.writeLine('require_relative \'' + packageName + '/' + fileName + '.rb\'') 670 | } else { 671 | codeWriter.writeLine('require_relative \'' + fileName + '.rb\'') 672 | } 673 | 674 | codeWriter.writeLine() 675 | } 676 | 677 | this.writeDocumentation(codeWriter, element.documentation, options) 678 | terms.push('class') 679 | terms.push(element.name) 680 | 681 | if (_inheritance.length) { 682 | terms.push('< ' + _inheritance[0].name) 683 | } 684 | 685 | codeWriter.writeLine(terms.join(' ')) 686 | codeWriter.indent() 687 | 688 | if (_interface.length) { 689 | codeWriter.writeLine('include ' + _interface[0].name) 690 | codeWriter.writeLine() 691 | } 692 | 693 | var associations = this.getClassAssociation(codeWriter, element) 694 | var associationTerms = [] 695 | if (associations.length) { 696 | for (var i = 0; i < associations.length; i++) { 697 | associationTerms.push(':' + associations[i]) 698 | associationTerms.push(', ') 699 | } 700 | 701 | if (associationTerms.length > 1) { 702 | associationTerms.pop() 703 | codeWriter.writeLine('attr_accessor ' + associationTerms.join('')) 704 | } 705 | 706 | codeWriter.writeLine() 707 | } 708 | 709 | var attributeCount = this.countAttributeByVisibility(element) 710 | var publicAttributeLength = attributeCount[0] 711 | if (publicAttributeLength) { 712 | this.writeAttributeAccessor('public', codeWriter, element, options) 713 | if (!staticAttributeCount) { 714 | codeWriter.writeLine() 715 | } 716 | } 717 | 718 | if (staticAttributeCount) { 719 | this.writeConstant(codeWriter, element) 720 | this.writeClassVariable(codeWriter, element) 721 | codeWriter.writeLine() 722 | } 723 | 724 | if (options.initializeMethod) { 725 | this.writeConstructor(codeWriter, element) 726 | codeWriter.writeLine() 727 | } 728 | 729 | codeWriter.outdent() 730 | this.writeMethodByVisibility(codeWriter, element, options) 731 | 732 | if (options.toStringMethod) { 733 | this.writeToStringMethod(codeWriter) 734 | } 735 | 736 | codeWriter.outdent() 737 | codeWriter.writeLine('end') 738 | } 739 | } 740 | 741 | /* 742 | * Generate Ruby code 743 | * @param {type.Model} baseModel 744 | * @param {string} basePath 745 | * @param {Object} options 746 | */ 747 | function generate (baseModel, basePath, options) { 748 | var rubyCodeGenerator = new RubyCodeGenerator(baseModel, basePath) 749 | rubyCodeGenerator.generate(baseModel, basePath, options) 750 | } 751 | 752 | exports.generate = generate 753 | -------------------------------------------------------------------------------- /test/staruml-ruby-test.mdj: -------------------------------------------------------------------------------- 1 | { 2 | "_type": "Project", 3 | "_id": "AAAAAAFF+h6SjaM2Hec=", 4 | "name": "StarUML Ruby Test", 5 | "ownedElements": [ 6 | { 7 | "_type": "UMLModel", 8 | "_id": "AAAAAAFX1kUEetOJAFg=", 9 | "_parent": { 10 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 11 | }, 12 | "name": "Empty Class", 13 | "ownedElements": [ 14 | { 15 | "_type": "UMLClassDiagram", 16 | "_id": "AAAAAAFX1kVmc9OoCxA=", 17 | "_parent": { 18 | "$ref": "AAAAAAFX1kUEetOJAFg=" 19 | }, 20 | "name": "Class Diagram", 21 | "ownedViews": [ 22 | { 23 | "_type": "UMLClassView", 24 | "_id": "AAAAAAFX1kWBstO/fx4=", 25 | "_parent": { 26 | "$ref": "AAAAAAFX1kVmc9OoCxA=" 27 | }, 28 | "model": { 29 | "$ref": "AAAAAAFX1kWBsdO9E5g=" 30 | }, 31 | "subViews": [ 32 | { 33 | "_type": "UMLNameCompartmentView", 34 | "_id": "AAAAAAFX1kWBstPAW+E=", 35 | "_parent": { 36 | "$ref": "AAAAAAFX1kWBstO/fx4=" 37 | }, 38 | "model": { 39 | "$ref": "AAAAAAFX1kWBsdO9E5g=" 40 | }, 41 | "subViews": [ 42 | { 43 | "_type": "LabelView", 44 | "_id": "AAAAAAFX1kWBstPBDwc=", 45 | "_parent": { 46 | "$ref": "AAAAAAFX1kWBstPAW+E=" 47 | }, 48 | "visible": false, 49 | "fillColor": "#fff5d8", 50 | "font": "Arial;13;0", 51 | "left": -176, 52 | "top": 80, 53 | "height": 13 54 | }, 55 | { 56 | "_type": "LabelView", 57 | "_id": "AAAAAAFX1kWBs9PCmJU=", 58 | "_parent": { 59 | "$ref": "AAAAAAFX1kWBstPAW+E=" 60 | }, 61 | "fillColor": "#fff5d8", 62 | "font": "Arial;13;1", 63 | "left": 213, 64 | "top": 247, 65 | "width": 103, 66 | "height": 13, 67 | "text": "Author" 68 | }, 69 | { 70 | "_type": "LabelView", 71 | "_id": "AAAAAAFX1kWBs9PDTm4=", 72 | "_parent": { 73 | "$ref": "AAAAAAFX1kWBstPAW+E=" 74 | }, 75 | "visible": false, 76 | "fillColor": "#fff5d8", 77 | "font": "Arial;13;0", 78 | "left": -176, 79 | "top": 80, 80 | "width": 112, 81 | "height": 13, 82 | "text": "(from Empty Class)" 83 | }, 84 | { 85 | "_type": "LabelView", 86 | "_id": "AAAAAAFX1kWBs9PEg6A=", 87 | "_parent": { 88 | "$ref": "AAAAAAFX1kWBstPAW+E=" 89 | }, 90 | "visible": false, 91 | "fillColor": "#fff5d8", 92 | "font": "Arial;13;0", 93 | "left": -176, 94 | "top": 80, 95 | "height": 13, 96 | "horizontalAlignment": 1 97 | } 98 | ], 99 | "fillColor": "#fff5d8", 100 | "font": "Arial;13;0", 101 | "left": 208, 102 | "top": 240, 103 | "width": 113, 104 | "height": 25, 105 | "stereotypeLabel": { 106 | "$ref": "AAAAAAFX1kWBstPBDwc=" 107 | }, 108 | "nameLabel": { 109 | "$ref": "AAAAAAFX1kWBs9PCmJU=" 110 | }, 111 | "namespaceLabel": { 112 | "$ref": "AAAAAAFX1kWBs9PDTm4=" 113 | }, 114 | "propertyLabel": { 115 | "$ref": "AAAAAAFX1kWBs9PEg6A=" 116 | } 117 | }, 118 | { 119 | "_type": "UMLAttributeCompartmentView", 120 | "_id": "AAAAAAFX1kWBs9PFWJU=", 121 | "_parent": { 122 | "$ref": "AAAAAAFX1kWBstO/fx4=" 123 | }, 124 | "model": { 125 | "$ref": "AAAAAAFX1kWBsdO9E5g=" 126 | }, 127 | "fillColor": "#fff5d8", 128 | "font": "Arial;13;0", 129 | "left": 208, 130 | "top": 265, 131 | "width": 113, 132 | "height": 10 133 | }, 134 | { 135 | "_type": "UMLOperationCompartmentView", 136 | "_id": "AAAAAAFX1kWBs9PGXRk=", 137 | "_parent": { 138 | "$ref": "AAAAAAFX1kWBstO/fx4=" 139 | }, 140 | "model": { 141 | "$ref": "AAAAAAFX1kWBsdO9E5g=" 142 | }, 143 | "fillColor": "#fff5d8", 144 | "font": "Arial;13;0", 145 | "left": 208, 146 | "top": 275, 147 | "width": 113, 148 | "height": 10 149 | }, 150 | { 151 | "_type": "UMLReceptionCompartmentView", 152 | "_id": "AAAAAAFX1kWBtNPHOAs=", 153 | "_parent": { 154 | "$ref": "AAAAAAFX1kWBstO/fx4=" 155 | }, 156 | "model": { 157 | "$ref": "AAAAAAFX1kWBsdO9E5g=" 158 | }, 159 | "visible": false, 160 | "fillColor": "#fff5d8", 161 | "font": "Arial;13;0", 162 | "left": -184, 163 | "top": 64, 164 | "width": 10, 165 | "height": 10 166 | }, 167 | { 168 | "_type": "UMLTemplateParameterCompartmentView", 169 | "_id": "AAAAAAFX1kWBtNPIntY=", 170 | "_parent": { 171 | "$ref": "AAAAAAFX1kWBstO/fx4=" 172 | }, 173 | "model": { 174 | "$ref": "AAAAAAFX1kWBsdO9E5g=" 175 | }, 176 | "visible": false, 177 | "fillColor": "#fff5d8", 178 | "font": "Arial;13;0", 179 | "left": -184, 180 | "top": 64, 181 | "width": 10, 182 | "height": 10 183 | } 184 | ], 185 | "fillColor": "#fff5d8", 186 | "font": "Arial;13;0", 187 | "containerChangeable": true, 188 | "left": 208, 189 | "top": 240, 190 | "width": 113, 191 | "height": 113, 192 | "nameCompartment": { 193 | "$ref": "AAAAAAFX1kWBstPAW+E=" 194 | }, 195 | "attributeCompartment": { 196 | "$ref": "AAAAAAFX1kWBs9PFWJU=" 197 | }, 198 | "operationCompartment": { 199 | "$ref": "AAAAAAFX1kWBs9PGXRk=" 200 | }, 201 | "receptionCompartment": { 202 | "$ref": "AAAAAAFX1kWBtNPHOAs=" 203 | }, 204 | "templateParameterCompartment": { 205 | "$ref": "AAAAAAFX1kWBtNPIntY=" 206 | } 207 | }, 208 | { 209 | "_type": "UMLClassView", 210 | "_id": "AAAAAAFX1ksnzPKXg/o=", 211 | "_parent": { 212 | "$ref": "AAAAAAFX1kVmc9OoCxA=" 213 | }, 214 | "model": { 215 | "$ref": "AAAAAAFX1ksnyvKVf0g=" 216 | }, 217 | "subViews": [ 218 | { 219 | "_type": "UMLNameCompartmentView", 220 | "_id": "AAAAAAFX1ksnzfKYYS4=", 221 | "_parent": { 222 | "$ref": "AAAAAAFX1ksnzPKXg/o=" 223 | }, 224 | "model": { 225 | "$ref": "AAAAAAFX1ksnyvKVf0g=" 226 | }, 227 | "subViews": [ 228 | { 229 | "_type": "LabelView", 230 | "_id": "AAAAAAFX1ksnzfKZQ7I=", 231 | "_parent": { 232 | "$ref": "AAAAAAFX1ksnzfKYYS4=" 233 | }, 234 | "visible": false, 235 | "fillColor": "#fff5d8", 236 | "font": "Arial;13;0", 237 | "left": -96, 238 | "top": 96, 239 | "height": 13 240 | }, 241 | { 242 | "_type": "LabelView", 243 | "_id": "AAAAAAFX1ksnzvKahlM=", 244 | "_parent": { 245 | "$ref": "AAAAAAFX1ksnzfKYYS4=" 246 | }, 247 | "fillColor": "#fff5d8", 248 | "font": "Arial;13;1", 249 | "left": 341, 250 | "top": 247, 251 | "width": 95, 252 | "height": 13, 253 | "text": "Book" 254 | }, 255 | { 256 | "_type": "LabelView", 257 | "_id": "AAAAAAFX1ksnzvKb7pE=", 258 | "_parent": { 259 | "$ref": "AAAAAAFX1ksnzfKYYS4=" 260 | }, 261 | "visible": false, 262 | "fillColor": "#fff5d8", 263 | "font": "Arial;13;0", 264 | "left": -96, 265 | "top": 96, 266 | "width": 112, 267 | "height": 13, 268 | "text": "(from Empty Class)" 269 | }, 270 | { 271 | "_type": "LabelView", 272 | "_id": "AAAAAAFX1ksnzvKcy9w=", 273 | "_parent": { 274 | "$ref": "AAAAAAFX1ksnzfKYYS4=" 275 | }, 276 | "visible": false, 277 | "fillColor": "#fff5d8", 278 | "font": "Arial;13;0", 279 | "left": -96, 280 | "top": 96, 281 | "height": 13, 282 | "horizontalAlignment": 1 283 | } 284 | ], 285 | "fillColor": "#fff5d8", 286 | "font": "Arial;13;0", 287 | "left": 336, 288 | "top": 240, 289 | "width": 105, 290 | "height": 25, 291 | "stereotypeLabel": { 292 | "$ref": "AAAAAAFX1ksnzfKZQ7I=" 293 | }, 294 | "nameLabel": { 295 | "$ref": "AAAAAAFX1ksnzvKahlM=" 296 | }, 297 | "namespaceLabel": { 298 | "$ref": "AAAAAAFX1ksnzvKb7pE=" 299 | }, 300 | "propertyLabel": { 301 | "$ref": "AAAAAAFX1ksnzvKcy9w=" 302 | } 303 | }, 304 | { 305 | "_type": "UMLAttributeCompartmentView", 306 | "_id": "AAAAAAFX1ksnzvKda6k=", 307 | "_parent": { 308 | "$ref": "AAAAAAFX1ksnzPKXg/o=" 309 | }, 310 | "model": { 311 | "$ref": "AAAAAAFX1ksnyvKVf0g=" 312 | }, 313 | "fillColor": "#fff5d8", 314 | "font": "Arial;13;0", 315 | "left": 336, 316 | "top": 265, 317 | "width": 105, 318 | "height": 10 319 | }, 320 | { 321 | "_type": "UMLOperationCompartmentView", 322 | "_id": "AAAAAAFX1ksnzvKe8G8=", 323 | "_parent": { 324 | "$ref": "AAAAAAFX1ksnzPKXg/o=" 325 | }, 326 | "model": { 327 | "$ref": "AAAAAAFX1ksnyvKVf0g=" 328 | }, 329 | "fillColor": "#fff5d8", 330 | "font": "Arial;13;0", 331 | "left": 336, 332 | "top": 275, 333 | "width": 105, 334 | "height": 10 335 | }, 336 | { 337 | "_type": "UMLReceptionCompartmentView", 338 | "_id": "AAAAAAFX1ksnz/KfxCo=", 339 | "_parent": { 340 | "$ref": "AAAAAAFX1ksnzPKXg/o=" 341 | }, 342 | "model": { 343 | "$ref": "AAAAAAFX1ksnyvKVf0g=" 344 | }, 345 | "visible": false, 346 | "fillColor": "#fff5d8", 347 | "font": "Arial;13;0", 348 | "left": -48, 349 | "top": 48, 350 | "width": 10, 351 | "height": 10 352 | }, 353 | { 354 | "_type": "UMLTemplateParameterCompartmentView", 355 | "_id": "AAAAAAFX1ksnz/KgEeQ=", 356 | "_parent": { 357 | "$ref": "AAAAAAFX1ksnzPKXg/o=" 358 | }, 359 | "model": { 360 | "$ref": "AAAAAAFX1ksnyvKVf0g=" 361 | }, 362 | "visible": false, 363 | "fillColor": "#fff5d8", 364 | "font": "Arial;13;0", 365 | "left": -48, 366 | "top": 48, 367 | "width": 10, 368 | "height": 10 369 | } 370 | ], 371 | "fillColor": "#fff5d8", 372 | "font": "Arial;13;0", 373 | "containerChangeable": true, 374 | "left": 336, 375 | "top": 240, 376 | "width": 105, 377 | "height": 113, 378 | "nameCompartment": { 379 | "$ref": "AAAAAAFX1ksnzfKYYS4=" 380 | }, 381 | "attributeCompartment": { 382 | "$ref": "AAAAAAFX1ksnzvKda6k=" 383 | }, 384 | "operationCompartment": { 385 | "$ref": "AAAAAAFX1ksnzvKe8G8=" 386 | }, 387 | "receptionCompartment": { 388 | "$ref": "AAAAAAFX1ksnz/KfxCo=" 389 | }, 390 | "templateParameterCompartment": { 391 | "$ref": "AAAAAAFX1ksnz/KgEeQ=" 392 | } 393 | } 394 | ] 395 | }, 396 | { 397 | "_type": "UMLClass", 398 | "_id": "AAAAAAFX1kWBsdO9E5g=", 399 | "_parent": { 400 | "$ref": "AAAAAAFX1kUEetOJAFg=" 401 | }, 402 | "name": "Author" 403 | }, 404 | { 405 | "_type": "UMLClass", 406 | "_id": "AAAAAAFX1ksnyvKVf0g=", 407 | "_parent": { 408 | "$ref": "AAAAAAFX1kUEetOJAFg=" 409 | }, 410 | "name": "Book" 411 | } 412 | ] 413 | }, 414 | { 415 | "_type": "UMLModel", 416 | "_id": "AAAAAAFX1kxBR/LIz9A=", 417 | "_parent": { 418 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 419 | }, 420 | "name": "Class Attributes", 421 | "ownedElements": [ 422 | { 423 | "_type": "UMLClassDiagram", 424 | "_id": "AAAAAAFX1kyOyvLMTKo=", 425 | "_parent": { 426 | "$ref": "AAAAAAFX1kxBR/LIz9A=" 427 | }, 428 | "name": "Class Diagram", 429 | "ownedViews": [ 430 | { 431 | "_type": "UMLClassView", 432 | "_id": "AAAAAAFX3157rUK4akI=", 433 | "_parent": { 434 | "$ref": "AAAAAAFX1kyOyvLMTKo=" 435 | }, 436 | "model": { 437 | "$ref": "AAAAAAFX3157qEK2Qdk=" 438 | }, 439 | "subViews": [ 440 | { 441 | "_type": "UMLNameCompartmentView", 442 | "_id": "AAAAAAFX3157rkK5otI=", 443 | "_parent": { 444 | "$ref": "AAAAAAFX3157rUK4akI=" 445 | }, 446 | "model": { 447 | "$ref": "AAAAAAFX3157qEK2Qdk=" 448 | }, 449 | "subViews": [ 450 | { 451 | "_type": "LabelView", 452 | "_id": "AAAAAAFX3157r0K6k2A=", 453 | "_parent": { 454 | "$ref": "AAAAAAFX3157rkK5otI=" 455 | }, 456 | "visible": false, 457 | "fillColor": "#fff5d8", 458 | "font": "Arial;13;0", 459 | "left": -96, 460 | "top": -16, 461 | "height": 13 462 | }, 463 | { 464 | "_type": "LabelView", 465 | "_id": "AAAAAAFX3157r0K7hCs=", 466 | "_parent": { 467 | "$ref": "AAAAAAFX3157rkK5otI=" 468 | }, 469 | "fillColor": "#fff5d8", 470 | "font": "Arial;13;1", 471 | "left": 141, 472 | "top": 247, 473 | "width": 111, 474 | "height": 13, 475 | "text": "Author" 476 | }, 477 | { 478 | "_type": "LabelView", 479 | "_id": "AAAAAAFX3157r0K8dNs=", 480 | "_parent": { 481 | "$ref": "AAAAAAFX3157rkK5otI=" 482 | }, 483 | "visible": false, 484 | "fillColor": "#fff5d8", 485 | "font": "Arial;13;0", 486 | "left": -96, 487 | "top": -16, 488 | "width": 130, 489 | "height": 13, 490 | "text": "(from Class Attributes)" 491 | }, 492 | { 493 | "_type": "LabelView", 494 | "_id": "AAAAAAFX3157r0K9SDw=", 495 | "_parent": { 496 | "$ref": "AAAAAAFX3157rkK5otI=" 497 | }, 498 | "visible": false, 499 | "fillColor": "#fff5d8", 500 | "font": "Arial;13;0", 501 | "left": -96, 502 | "top": -16, 503 | "height": 13, 504 | "horizontalAlignment": 1 505 | } 506 | ], 507 | "fillColor": "#fff5d8", 508 | "font": "Arial;13;0", 509 | "left": 136, 510 | "top": 240, 511 | "width": 121, 512 | "height": 25, 513 | "stereotypeLabel": { 514 | "$ref": "AAAAAAFX3157r0K6k2A=" 515 | }, 516 | "nameLabel": { 517 | "$ref": "AAAAAAFX3157r0K7hCs=" 518 | }, 519 | "namespaceLabel": { 520 | "$ref": "AAAAAAFX3157r0K8dNs=" 521 | }, 522 | "propertyLabel": { 523 | "$ref": "AAAAAAFX3157r0K9SDw=" 524 | } 525 | }, 526 | { 527 | "_type": "UMLAttributeCompartmentView", 528 | "_id": "AAAAAAFX3157sEK+Zmc=", 529 | "_parent": { 530 | "$ref": "AAAAAAFX3157rUK4akI=" 531 | }, 532 | "model": { 533 | "$ref": "AAAAAAFX3157qEK2Qdk=" 534 | }, 535 | "subViews": [ 536 | { 537 | "_type": "UMLAttributeView", 538 | "_id": "AAAAAAFX36KxFUMNsB0=", 539 | "_parent": { 540 | "$ref": "AAAAAAFX3157sEK+Zmc=" 541 | }, 542 | "model": { 543 | "$ref": "AAAAAAFX36KwkkMKuvE=" 544 | }, 545 | "fillColor": "#fff5d8", 546 | "font": "Arial;13;0", 547 | "left": 141, 548 | "top": 270, 549 | "width": 111, 550 | "height": 13, 551 | "text": "-name: String", 552 | "horizontalAlignment": 0 553 | }, 554 | { 555 | "_type": "UMLAttributeView", 556 | "_id": "AAAAAAFX36Mwq0MWL3A=", 557 | "_parent": { 558 | "$ref": "AAAAAAFX3157sEK+Zmc=" 559 | }, 560 | "model": { 561 | "$ref": "AAAAAAFX36MwMEMT7og=" 562 | }, 563 | "fillColor": "#fff5d8", 564 | "font": "Arial;13;0", 565 | "left": 141, 566 | "top": 285, 567 | "width": 111, 568 | "height": 13, 569 | "text": "-email: String", 570 | "horizontalAlignment": 0 571 | } 572 | ], 573 | "fillColor": "#fff5d8", 574 | "font": "Arial;13;0", 575 | "left": 136, 576 | "top": 265, 577 | "width": 121, 578 | "height": 38 579 | }, 580 | { 581 | "_type": "UMLOperationCompartmentView", 582 | "_id": "AAAAAAFX3157sEK/Dns=", 583 | "_parent": { 584 | "$ref": "AAAAAAFX3157rUK4akI=" 585 | }, 586 | "model": { 587 | "$ref": "AAAAAAFX3157qEK2Qdk=" 588 | }, 589 | "fillColor": "#fff5d8", 590 | "font": "Arial;13;0", 591 | "left": 136, 592 | "top": 303, 593 | "width": 121, 594 | "height": 10 595 | }, 596 | { 597 | "_type": "UMLReceptionCompartmentView", 598 | "_id": "AAAAAAFX3157sULAXPI=", 599 | "_parent": { 600 | "$ref": "AAAAAAFX3157rUK4akI=" 601 | }, 602 | "model": { 603 | "$ref": "AAAAAAFX3157qEK2Qdk=" 604 | }, 605 | "visible": false, 606 | "fillColor": "#fff5d8", 607 | "font": "Arial;13;0", 608 | "left": 856, 609 | "top": 536, 610 | "width": 10, 611 | "height": 10 612 | }, 613 | { 614 | "_type": "UMLTemplateParameterCompartmentView", 615 | "_id": "AAAAAAFX3157sULBQ5g=", 616 | "_parent": { 617 | "$ref": "AAAAAAFX3157rUK4akI=" 618 | }, 619 | "model": { 620 | "$ref": "AAAAAAFX3157qEK2Qdk=" 621 | }, 622 | "visible": false, 623 | "fillColor": "#fff5d8", 624 | "font": "Arial;13;0", 625 | "left": 856, 626 | "top": 536, 627 | "width": 10, 628 | "height": 10 629 | } 630 | ], 631 | "fillColor": "#fff5d8", 632 | "font": "Arial;13;0", 633 | "containerChangeable": true, 634 | "left": 136, 635 | "top": 240, 636 | "width": 121, 637 | "height": 113, 638 | "nameCompartment": { 639 | "$ref": "AAAAAAFX3157rkK5otI=" 640 | }, 641 | "attributeCompartment": { 642 | "$ref": "AAAAAAFX3157sEK+Zmc=" 643 | }, 644 | "operationCompartment": { 645 | "$ref": "AAAAAAFX3157sEK/Dns=" 646 | }, 647 | "receptionCompartment": { 648 | "$ref": "AAAAAAFX3157sULAXPI=" 649 | }, 650 | "templateParameterCompartment": { 651 | "$ref": "AAAAAAFX3157sULBQ5g=" 652 | } 653 | }, 654 | { 655 | "_type": "UMLClassView", 656 | "_id": "AAAAAAFX316crkLiF70=", 657 | "_parent": { 658 | "$ref": "AAAAAAFX1kyOyvLMTKo=" 659 | }, 660 | "model": { 661 | "$ref": "AAAAAAFX316crULgYxc=" 662 | }, 663 | "subViews": [ 664 | { 665 | "_type": "UMLNameCompartmentView", 666 | "_id": "AAAAAAFX316crkLjr2Q=", 667 | "_parent": { 668 | "$ref": "AAAAAAFX316crkLiF70=" 669 | }, 670 | "model": { 671 | "$ref": "AAAAAAFX316crULgYxc=" 672 | }, 673 | "subViews": [ 674 | { 675 | "_type": "LabelView", 676 | "_id": "AAAAAAFX316crkLkXkk=", 677 | "_parent": { 678 | "$ref": "AAAAAAFX316crkLjr2Q=" 679 | }, 680 | "visible": false, 681 | "fillColor": "#fff5d8", 682 | "font": "Arial;13;0", 683 | "left": -32, 684 | "top": -16, 685 | "height": 13 686 | }, 687 | { 688 | "_type": "LabelView", 689 | "_id": "AAAAAAFX316crkLl17g=", 690 | "_parent": { 691 | "$ref": "AAAAAAFX316crkLjr2Q=" 692 | }, 693 | "fillColor": "#fff5d8", 694 | "font": "Arial;13;1", 695 | "left": 293, 696 | "top": 247, 697 | "width": 87, 698 | "height": 13, 699 | "text": "Book" 700 | }, 701 | { 702 | "_type": "LabelView", 703 | "_id": "AAAAAAFX316crkLm6Xk=", 704 | "_parent": { 705 | "$ref": "AAAAAAFX316crkLjr2Q=" 706 | }, 707 | "visible": false, 708 | "fillColor": "#fff5d8", 709 | "font": "Arial;13;0", 710 | "left": -32, 711 | "top": -16, 712 | "width": 130, 713 | "height": 13, 714 | "text": "(from Class Attributes)" 715 | }, 716 | { 717 | "_type": "LabelView", 718 | "_id": "AAAAAAFX316crkLnXlA=", 719 | "_parent": { 720 | "$ref": "AAAAAAFX316crkLjr2Q=" 721 | }, 722 | "visible": false, 723 | "fillColor": "#fff5d8", 724 | "font": "Arial;13;0", 725 | "left": -32, 726 | "top": -16, 727 | "height": 13, 728 | "horizontalAlignment": 1 729 | } 730 | ], 731 | "fillColor": "#fff5d8", 732 | "font": "Arial;13;0", 733 | "left": 288, 734 | "top": 240, 735 | "width": 97, 736 | "height": 25, 737 | "stereotypeLabel": { 738 | "$ref": "AAAAAAFX316crkLkXkk=" 739 | }, 740 | "nameLabel": { 741 | "$ref": "AAAAAAFX316crkLl17g=" 742 | }, 743 | "namespaceLabel": { 744 | "$ref": "AAAAAAFX316crkLm6Xk=" 745 | }, 746 | "propertyLabel": { 747 | "$ref": "AAAAAAFX316crkLnXlA=" 748 | } 749 | }, 750 | { 751 | "_type": "UMLAttributeCompartmentView", 752 | "_id": "AAAAAAFX316crkLoKSE=", 753 | "_parent": { 754 | "$ref": "AAAAAAFX316crkLiF70=" 755 | }, 756 | "model": { 757 | "$ref": "AAAAAAFX316crULgYxc=" 758 | }, 759 | "subViews": [ 760 | { 761 | "_type": "UMLAttributeView", 762 | "_id": "AAAAAAFX36PNtkMq/d8=", 763 | "_parent": { 764 | "$ref": "AAAAAAFX316crkLoKSE=" 765 | }, 766 | "model": { 767 | "$ref": "AAAAAAFX36PNSEMnd40=" 768 | }, 769 | "fillColor": "#fff5d8", 770 | "font": "Arial;13;0", 771 | "left": 293, 772 | "top": 270, 773 | "width": 87, 774 | "height": 13, 775 | "text": "-name: String", 776 | "horizontalAlignment": 0 777 | }, 778 | { 779 | "_type": "UMLAttributeView", 780 | "_id": "AAAAAAFX36QTYUMygLk=", 781 | "_parent": { 782 | "$ref": "AAAAAAFX316crkLoKSE=" 783 | }, 784 | "model": { 785 | "$ref": "AAAAAAFX36QS8UMvCsI=" 786 | }, 787 | "fillColor": "#fff5d8", 788 | "font": "Arial;13;0", 789 | "left": 293, 790 | "top": 285, 791 | "width": 87, 792 | "height": 13, 793 | "text": "-price: Float", 794 | "horizontalAlignment": 0 795 | }, 796 | { 797 | "_type": "UMLAttributeView", 798 | "_id": "AAAAAAFX36SFQ0M6GC4=", 799 | "_parent": { 800 | "$ref": "AAAAAAFX316crkLoKSE=" 801 | }, 802 | "model": { 803 | "$ref": "AAAAAAFX36SE4kM3Z4Y=" 804 | }, 805 | "fillColor": "#fff5d8", 806 | "font": "Arial;13;0", 807 | "left": 293, 808 | "top": 300, 809 | "width": 87, 810 | "height": 13, 811 | "text": "-qty: int", 812 | "horizontalAlignment": 0 813 | } 814 | ], 815 | "fillColor": "#fff5d8", 816 | "font": "Arial;13;0", 817 | "left": 288, 818 | "top": 265, 819 | "width": 97, 820 | "height": 53 821 | }, 822 | { 823 | "_type": "UMLOperationCompartmentView", 824 | "_id": "AAAAAAFX316crkLpAKw=", 825 | "_parent": { 826 | "$ref": "AAAAAAFX316crkLiF70=" 827 | }, 828 | "model": { 829 | "$ref": "AAAAAAFX316crULgYxc=" 830 | }, 831 | "fillColor": "#fff5d8", 832 | "font": "Arial;13;0", 833 | "left": 288, 834 | "top": 318, 835 | "width": 97, 836 | "height": 10 837 | }, 838 | { 839 | "_type": "UMLReceptionCompartmentView", 840 | "_id": "AAAAAAFX316cr0LqPFs=", 841 | "_parent": { 842 | "$ref": "AAAAAAFX316crkLiF70=" 843 | }, 844 | "model": { 845 | "$ref": "AAAAAAFX316crULgYxc=" 846 | }, 847 | "visible": false, 848 | "fillColor": "#fff5d8", 849 | "font": "Arial;13;0", 850 | "left": -16, 851 | "top": -8, 852 | "width": 10, 853 | "height": 10 854 | }, 855 | { 856 | "_type": "UMLTemplateParameterCompartmentView", 857 | "_id": "AAAAAAFX316cr0LrV2I=", 858 | "_parent": { 859 | "$ref": "AAAAAAFX316crkLiF70=" 860 | }, 861 | "model": { 862 | "$ref": "AAAAAAFX316crULgYxc=" 863 | }, 864 | "visible": false, 865 | "fillColor": "#fff5d8", 866 | "font": "Arial;13;0", 867 | "left": -16, 868 | "top": -8, 869 | "width": 10, 870 | "height": 10 871 | } 872 | ], 873 | "fillColor": "#fff5d8", 874 | "font": "Arial;13;0", 875 | "containerChangeable": true, 876 | "left": 288, 877 | "top": 240, 878 | "width": 97, 879 | "height": 113, 880 | "nameCompartment": { 881 | "$ref": "AAAAAAFX316crkLjr2Q=" 882 | }, 883 | "attributeCompartment": { 884 | "$ref": "AAAAAAFX316crkLoKSE=" 885 | }, 886 | "operationCompartment": { 887 | "$ref": "AAAAAAFX316crkLpAKw=" 888 | }, 889 | "receptionCompartment": { 890 | "$ref": "AAAAAAFX316cr0LqPFs=" 891 | }, 892 | "templateParameterCompartment": { 893 | "$ref": "AAAAAAFX316cr0LrV2I=" 894 | } 895 | } 896 | ] 897 | }, 898 | { 899 | "_type": "UMLClass", 900 | "_id": "AAAAAAFX3157qEK2Qdk=", 901 | "_parent": { 902 | "$ref": "AAAAAAFX1kxBR/LIz9A=" 903 | }, 904 | "name": "Author", 905 | "attributes": [ 906 | { 907 | "_type": "UMLAttribute", 908 | "_id": "AAAAAAFX36KwkkMKuvE=", 909 | "_parent": { 910 | "$ref": "AAAAAAFX3157qEK2Qdk=" 911 | }, 912 | "name": "name", 913 | "visibility": "private", 914 | "type": "String" 915 | }, 916 | { 917 | "_type": "UMLAttribute", 918 | "_id": "AAAAAAFX36MwMEMT7og=", 919 | "_parent": { 920 | "$ref": "AAAAAAFX3157qEK2Qdk=" 921 | }, 922 | "name": "email", 923 | "visibility": "private", 924 | "type": "String" 925 | } 926 | ] 927 | }, 928 | { 929 | "_type": "UMLClass", 930 | "_id": "AAAAAAFX316crULgYxc=", 931 | "_parent": { 932 | "$ref": "AAAAAAFX1kxBR/LIz9A=" 933 | }, 934 | "name": "Book", 935 | "attributes": [ 936 | { 937 | "_type": "UMLAttribute", 938 | "_id": "AAAAAAFX36PNSEMnd40=", 939 | "_parent": { 940 | "$ref": "AAAAAAFX316crULgYxc=" 941 | }, 942 | "name": "name", 943 | "visibility": "private", 944 | "type": "String" 945 | }, 946 | { 947 | "_type": "UMLAttribute", 948 | "_id": "AAAAAAFX36QS8UMvCsI=", 949 | "_parent": { 950 | "$ref": "AAAAAAFX316crULgYxc=" 951 | }, 952 | "name": "price", 953 | "visibility": "private", 954 | "type": "Float" 955 | }, 956 | { 957 | "_type": "UMLAttribute", 958 | "_id": "AAAAAAFX36SE4kM3Z4Y=", 959 | "_parent": { 960 | "$ref": "AAAAAAFX316crULgYxc=" 961 | }, 962 | "name": "qty", 963 | "visibility": "private", 964 | "type": "int" 965 | } 966 | ] 967 | } 968 | ] 969 | }, 970 | { 971 | "_type": "UMLModel", 972 | "_id": "AAAAAAFX1kyl2vLY7Jc=", 973 | "_parent": { 974 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 975 | }, 976 | "name": "Class Methods", 977 | "ownedElements": [ 978 | { 979 | "_type": "UMLClassDiagram", 980 | "_id": "AAAAAAFX1kzRCPLcJ14=", 981 | "_parent": { 982 | "$ref": "AAAAAAFX1kyl2vLY7Jc=" 983 | }, 984 | "name": "Class Diagram", 985 | "ownedViews": [ 986 | { 987 | "_type": "UMLClassView", 988 | "_id": "AAAAAAFX37EChkNMLAQ=", 989 | "_parent": { 990 | "$ref": "AAAAAAFX1kzRCPLcJ14=" 991 | }, 992 | "model": { 993 | "$ref": "AAAAAAFX37ECgUNKPw8=" 994 | }, 995 | "subViews": [ 996 | { 997 | "_type": "UMLNameCompartmentView", 998 | "_id": "AAAAAAFX37ECh0NNK94=", 999 | "_parent": { 1000 | "$ref": "AAAAAAFX37EChkNMLAQ=" 1001 | }, 1002 | "model": { 1003 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1004 | }, 1005 | "subViews": [ 1006 | { 1007 | "_type": "LabelView", 1008 | "_id": "AAAAAAFX37ECh0NOVWs=", 1009 | "_parent": { 1010 | "$ref": "AAAAAAFX37ECh0NNK94=" 1011 | }, 1012 | "visible": false, 1013 | "fillColor": "#fff5d8", 1014 | "font": "Arial;13;0", 1015 | "left": -64, 1016 | "top": -16, 1017 | "height": 13 1018 | }, 1019 | { 1020 | "_type": "LabelView", 1021 | "_id": "AAAAAAFX37ECiENP7sw=", 1022 | "_parent": { 1023 | "$ref": "AAAAAAFX37ECh0NNK94=" 1024 | }, 1025 | "fillColor": "#fff5d8", 1026 | "font": "Arial;13;1", 1027 | "left": 277, 1028 | "top": 215, 1029 | "width": 120, 1030 | "height": 13, 1031 | "text": "Circle" 1032 | }, 1033 | { 1034 | "_type": "LabelView", 1035 | "_id": "AAAAAAFX37ECiENQxoU=", 1036 | "_parent": { 1037 | "$ref": "AAAAAAFX37ECh0NNK94=" 1038 | }, 1039 | "visible": false, 1040 | "fillColor": "#fff5d8", 1041 | "font": "Arial;13;0", 1042 | "left": -64, 1043 | "top": -16, 1044 | "width": 124.2490234375, 1045 | "height": 13, 1046 | "text": "(from Class Methods)" 1047 | }, 1048 | { 1049 | "_type": "LabelView", 1050 | "_id": "AAAAAAFX37ECiENRgHY=", 1051 | "_parent": { 1052 | "$ref": "AAAAAAFX37ECh0NNK94=" 1053 | }, 1054 | "visible": false, 1055 | "fillColor": "#fff5d8", 1056 | "font": "Arial;13;0", 1057 | "left": -64, 1058 | "top": -16, 1059 | "height": 13, 1060 | "horizontalAlignment": 1 1061 | } 1062 | ], 1063 | "fillColor": "#fff5d8", 1064 | "font": "Arial;13;0", 1065 | "left": 272, 1066 | "top": 208, 1067 | "width": 130, 1068 | "height": 25, 1069 | "stereotypeLabel": { 1070 | "$ref": "AAAAAAFX37ECh0NOVWs=" 1071 | }, 1072 | "nameLabel": { 1073 | "$ref": "AAAAAAFX37ECiENP7sw=" 1074 | }, 1075 | "namespaceLabel": { 1076 | "$ref": "AAAAAAFX37ECiENQxoU=" 1077 | }, 1078 | "propertyLabel": { 1079 | "$ref": "AAAAAAFX37ECiENRgHY=" 1080 | } 1081 | }, 1082 | { 1083 | "_type": "UMLAttributeCompartmentView", 1084 | "_id": "AAAAAAFX37ECiENSxNc=", 1085 | "_parent": { 1086 | "$ref": "AAAAAAFX37EChkNMLAQ=" 1087 | }, 1088 | "model": { 1089 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1090 | }, 1091 | "fillColor": "#fff5d8", 1092 | "font": "Arial;13;0", 1093 | "left": 272, 1094 | "top": 233, 1095 | "width": 130, 1096 | "height": 10 1097 | }, 1098 | { 1099 | "_type": "UMLOperationCompartmentView", 1100 | "_id": "AAAAAAFX37ECiENTLzg=", 1101 | "_parent": { 1102 | "$ref": "AAAAAAFX37EChkNMLAQ=" 1103 | }, 1104 | "model": { 1105 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1106 | }, 1107 | "subViews": [ 1108 | { 1109 | "_type": "UMLOperationView", 1110 | "_id": "AAAAAAFX37EZq0N3uC0=", 1111 | "_parent": { 1112 | "$ref": "AAAAAAFX37ECiENTLzg=" 1113 | }, 1114 | "model": { 1115 | "$ref": "AAAAAAFX37EZPkN0iNU=" 1116 | }, 1117 | "fillColor": "#fff5d8", 1118 | "font": "Arial;13;0", 1119 | "left": 277, 1120 | "top": 248, 1121 | "width": 120, 1122 | "height": 13, 1123 | "text": "+getRadius(): Float", 1124 | "horizontalAlignment": 0 1125 | }, 1126 | { 1127 | "_type": "UMLOperationView", 1128 | "_id": "AAAAAAFX37E8X0OAarE=", 1129 | "_parent": { 1130 | "$ref": "AAAAAAFX37ECiENTLzg=" 1131 | }, 1132 | "model": { 1133 | "$ref": "AAAAAAFX37E79UN9mX4=" 1134 | }, 1135 | "fillColor": "#fff5d8", 1136 | "font": "Arial;13;0", 1137 | "left": 277, 1138 | "top": 263, 1139 | "width": 120, 1140 | "height": 13, 1141 | "text": "+getArea(): Float", 1142 | "horizontalAlignment": 0 1143 | } 1144 | ], 1145 | "fillColor": "#fff5d8", 1146 | "font": "Arial;13;0", 1147 | "left": 272, 1148 | "top": 243, 1149 | "width": 130, 1150 | "height": 38 1151 | }, 1152 | { 1153 | "_type": "UMLReceptionCompartmentView", 1154 | "_id": "AAAAAAFX37ECiENUFFg=", 1155 | "_parent": { 1156 | "$ref": "AAAAAAFX37EChkNMLAQ=" 1157 | }, 1158 | "model": { 1159 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1160 | }, 1161 | "visible": false, 1162 | "fillColor": "#fff5d8", 1163 | "font": "Arial;13;0", 1164 | "left": -32, 1165 | "top": -8, 1166 | "width": 10, 1167 | "height": 10 1168 | }, 1169 | { 1170 | "_type": "UMLTemplateParameterCompartmentView", 1171 | "_id": "AAAAAAFX37ECiUNVGKw=", 1172 | "_parent": { 1173 | "$ref": "AAAAAAFX37EChkNMLAQ=" 1174 | }, 1175 | "model": { 1176 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1177 | }, 1178 | "visible": false, 1179 | "fillColor": "#fff5d8", 1180 | "font": "Arial;13;0", 1181 | "left": -32, 1182 | "top": -8, 1183 | "width": 10, 1184 | "height": 10 1185 | } 1186 | ], 1187 | "fillColor": "#fff5d8", 1188 | "font": "Arial;13;0", 1189 | "containerChangeable": true, 1190 | "left": 272, 1191 | "top": 208, 1192 | "width": 130, 1193 | "height": 73, 1194 | "nameCompartment": { 1195 | "$ref": "AAAAAAFX37ECh0NNK94=" 1196 | }, 1197 | "attributeCompartment": { 1198 | "$ref": "AAAAAAFX37ECiENSxNc=" 1199 | }, 1200 | "operationCompartment": { 1201 | "$ref": "AAAAAAFX37ECiENTLzg=" 1202 | }, 1203 | "receptionCompartment": { 1204 | "$ref": "AAAAAAFX37ECiENUFFg=" 1205 | }, 1206 | "templateParameterCompartment": { 1207 | "$ref": "AAAAAAFX37ECiUNVGKw=" 1208 | } 1209 | } 1210 | ] 1211 | }, 1212 | { 1213 | "_type": "UMLClass", 1214 | "_id": "AAAAAAFX37ECgUNKPw8=", 1215 | "_parent": { 1216 | "$ref": "AAAAAAFX1kyl2vLY7Jc=" 1217 | }, 1218 | "name": "Circle", 1219 | "operations": [ 1220 | { 1221 | "_type": "UMLOperation", 1222 | "_id": "AAAAAAFX37EZPkN0iNU=", 1223 | "_parent": { 1224 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1225 | }, 1226 | "name": "getRadius", 1227 | "parameters": [ 1228 | { 1229 | "_type": "UMLParameter", 1230 | "_id": "AAAAAAFX37E67UN7nIw=", 1231 | "_parent": { 1232 | "$ref": "AAAAAAFX37EZPkN0iNU=" 1233 | }, 1234 | "type": "Float", 1235 | "direction": "return" 1236 | } 1237 | ] 1238 | }, 1239 | { 1240 | "_type": "UMLOperation", 1241 | "_id": "AAAAAAFX37E79UN9mX4=", 1242 | "_parent": { 1243 | "$ref": "AAAAAAFX37ECgUNKPw8=" 1244 | }, 1245 | "name": "getArea", 1246 | "parameters": [ 1247 | { 1248 | "_type": "UMLParameter", 1249 | "_id": "AAAAAAFX37F/G0OF37E=", 1250 | "_parent": { 1251 | "$ref": "AAAAAAFX37E79UN9mX4=" 1252 | }, 1253 | "type": "Float", 1254 | "direction": "return" 1255 | } 1256 | ] 1257 | } 1258 | ] 1259 | } 1260 | ] 1261 | }, 1262 | { 1263 | "_type": "UMLModel", 1264 | "_id": "AAAAAAFX1k0dJ/LoEKk=", 1265 | "_parent": { 1266 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 1267 | }, 1268 | "name": "Generalization", 1269 | "ownedElements": [ 1270 | { 1271 | "_type": "UMLClassDiagram", 1272 | "_id": "AAAAAAFX1k04LvLshj4=", 1273 | "_parent": { 1274 | "$ref": "AAAAAAFX1k0dJ/LoEKk=" 1275 | }, 1276 | "name": "Class Diagram", 1277 | "ownedViews": [ 1278 | { 1279 | "_type": "UMLClassView", 1280 | "_id": "AAAAAAFX5XdoSDAbPno=", 1281 | "_parent": { 1282 | "$ref": "AAAAAAFX1k04LvLshj4=" 1283 | }, 1284 | "model": { 1285 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1286 | }, 1287 | "subViews": [ 1288 | { 1289 | "_type": "UMLNameCompartmentView", 1290 | "_id": "AAAAAAFX5XdoSTAcqgc=", 1291 | "_parent": { 1292 | "$ref": "AAAAAAFX5XdoSDAbPno=" 1293 | }, 1294 | "model": { 1295 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1296 | }, 1297 | "subViews": [ 1298 | { 1299 | "_type": "LabelView", 1300 | "_id": "AAAAAAFX5XdoSTAdBxc=", 1301 | "_parent": { 1302 | "$ref": "AAAAAAFX5XdoSTAcqgc=" 1303 | }, 1304 | "visible": false, 1305 | "fillColor": "#fff5d8", 1306 | "font": "Arial;13;0", 1307 | "left": -16, 1308 | "top": -32, 1309 | "height": 13 1310 | }, 1311 | { 1312 | "_type": "LabelView", 1313 | "_id": "AAAAAAFX5XdoSjAe5uk=", 1314 | "_parent": { 1315 | "$ref": "AAAAAAFX5XdoSTAcqgc=" 1316 | }, 1317 | "fillColor": "#fff5d8", 1318 | "font": "Arial;13;1", 1319 | "left": 213, 1320 | "top": 199, 1321 | "width": 103, 1322 | "height": 13, 1323 | "text": "SuperClass" 1324 | }, 1325 | { 1326 | "_type": "LabelView", 1327 | "_id": "AAAAAAFX5XdoSjAfU5o=", 1328 | "_parent": { 1329 | "$ref": "AAAAAAFX5XdoSTAcqgc=" 1330 | }, 1331 | "visible": false, 1332 | "fillColor": "#fff5d8", 1333 | "font": "Arial;13;0", 1334 | "left": -16, 1335 | "top": -32, 1336 | "width": 122.09716796875, 1337 | "height": 13, 1338 | "text": "(from Generalization)" 1339 | }, 1340 | { 1341 | "_type": "LabelView", 1342 | "_id": "AAAAAAFX5XdoSjAgWA8=", 1343 | "_parent": { 1344 | "$ref": "AAAAAAFX5XdoSTAcqgc=" 1345 | }, 1346 | "visible": false, 1347 | "fillColor": "#fff5d8", 1348 | "font": "Arial;13;0", 1349 | "left": -16, 1350 | "top": -32, 1351 | "height": 13, 1352 | "horizontalAlignment": 1 1353 | } 1354 | ], 1355 | "fillColor": "#fff5d8", 1356 | "font": "Arial;13;0", 1357 | "left": 208, 1358 | "top": 192, 1359 | "width": 113, 1360 | "height": 25, 1361 | "stereotypeLabel": { 1362 | "$ref": "AAAAAAFX5XdoSTAdBxc=" 1363 | }, 1364 | "nameLabel": { 1365 | "$ref": "AAAAAAFX5XdoSjAe5uk=" 1366 | }, 1367 | "namespaceLabel": { 1368 | "$ref": "AAAAAAFX5XdoSjAfU5o=" 1369 | }, 1370 | "propertyLabel": { 1371 | "$ref": "AAAAAAFX5XdoSjAgWA8=" 1372 | } 1373 | }, 1374 | { 1375 | "_type": "UMLAttributeCompartmentView", 1376 | "_id": "AAAAAAFX5XdoSjAhXf4=", 1377 | "_parent": { 1378 | "$ref": "AAAAAAFX5XdoSDAbPno=" 1379 | }, 1380 | "model": { 1381 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1382 | }, 1383 | "fillColor": "#fff5d8", 1384 | "font": "Arial;13;0", 1385 | "left": 208, 1386 | "top": 217, 1387 | "width": 113, 1388 | "height": 10 1389 | }, 1390 | { 1391 | "_type": "UMLOperationCompartmentView", 1392 | "_id": "AAAAAAFX5XdoSjAiskI=", 1393 | "_parent": { 1394 | "$ref": "AAAAAAFX5XdoSDAbPno=" 1395 | }, 1396 | "model": { 1397 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1398 | }, 1399 | "fillColor": "#fff5d8", 1400 | "font": "Arial;13;0", 1401 | "left": 208, 1402 | "top": 227, 1403 | "width": 113, 1404 | "height": 10 1405 | }, 1406 | { 1407 | "_type": "UMLReceptionCompartmentView", 1408 | "_id": "AAAAAAFX5XdoSzAjluo=", 1409 | "_parent": { 1410 | "$ref": "AAAAAAFX5XdoSDAbPno=" 1411 | }, 1412 | "model": { 1413 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1414 | }, 1415 | "visible": false, 1416 | "fillColor": "#fff5d8", 1417 | "font": "Arial;13;0", 1418 | "left": -8, 1419 | "top": -16, 1420 | "width": 10, 1421 | "height": 10 1422 | }, 1423 | { 1424 | "_type": "UMLTemplateParameterCompartmentView", 1425 | "_id": "AAAAAAFX5XdoSzAk3mQ=", 1426 | "_parent": { 1427 | "$ref": "AAAAAAFX5XdoSDAbPno=" 1428 | }, 1429 | "model": { 1430 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1431 | }, 1432 | "visible": false, 1433 | "fillColor": "#fff5d8", 1434 | "font": "Arial;13;0", 1435 | "left": -8, 1436 | "top": -16, 1437 | "width": 10, 1438 | "height": 10 1439 | } 1440 | ], 1441 | "fillColor": "#fff5d8", 1442 | "font": "Arial;13;0", 1443 | "containerChangeable": true, 1444 | "left": 208, 1445 | "top": 192, 1446 | "width": 113, 1447 | "height": 65, 1448 | "nameCompartment": { 1449 | "$ref": "AAAAAAFX5XdoSTAcqgc=" 1450 | }, 1451 | "attributeCompartment": { 1452 | "$ref": "AAAAAAFX5XdoSjAhXf4=" 1453 | }, 1454 | "operationCompartment": { 1455 | "$ref": "AAAAAAFX5XdoSjAiskI=" 1456 | }, 1457 | "receptionCompartment": { 1458 | "$ref": "AAAAAAFX5XdoSzAjluo=" 1459 | }, 1460 | "templateParameterCompartment": { 1461 | "$ref": "AAAAAAFX5XdoSzAk3mQ=" 1462 | } 1463 | }, 1464 | { 1465 | "_type": "UMLClassView", 1466 | "_id": "AAAAAAFX5Xd9NzBFqQ0=", 1467 | "_parent": { 1468 | "$ref": "AAAAAAFX1k04LvLshj4=" 1469 | }, 1470 | "model": { 1471 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1472 | }, 1473 | "subViews": [ 1474 | { 1475 | "_type": "UMLNameCompartmentView", 1476 | "_id": "AAAAAAFX5Xd9NzBGrw0=", 1477 | "_parent": { 1478 | "$ref": "AAAAAAFX5Xd9NzBFqQ0=" 1479 | }, 1480 | "model": { 1481 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1482 | }, 1483 | "subViews": [ 1484 | { 1485 | "_type": "LabelView", 1486 | "_id": "AAAAAAFX5Xd9NzBHr+c=", 1487 | "_parent": { 1488 | "$ref": "AAAAAAFX5Xd9NzBGrw0=" 1489 | }, 1490 | "visible": false, 1491 | "fillColor": "#fff5d8", 1492 | "font": "Arial;13;0", 1493 | "left": -48, 1494 | "top": -16, 1495 | "height": 13 1496 | }, 1497 | { 1498 | "_type": "LabelView", 1499 | "_id": "AAAAAAFX5Xd9ODBIVn4=", 1500 | "_parent": { 1501 | "$ref": "AAAAAAFX5Xd9NzBGrw0=" 1502 | }, 1503 | "fillColor": "#fff5d8", 1504 | "font": "Arial;13;1", 1505 | "left": 213, 1506 | "top": 327, 1507 | "width": 103, 1508 | "height": 13, 1509 | "text": "SubClass" 1510 | }, 1511 | { 1512 | "_type": "LabelView", 1513 | "_id": "AAAAAAFX5Xd9ODBJc0M=", 1514 | "_parent": { 1515 | "$ref": "AAAAAAFX5Xd9NzBGrw0=" 1516 | }, 1517 | "visible": false, 1518 | "fillColor": "#fff5d8", 1519 | "font": "Arial;13;0", 1520 | "left": -48, 1521 | "top": -16, 1522 | "width": 122.09716796875, 1523 | "height": 13, 1524 | "text": "(from Generalization)" 1525 | }, 1526 | { 1527 | "_type": "LabelView", 1528 | "_id": "AAAAAAFX5Xd9OzBKeOk=", 1529 | "_parent": { 1530 | "$ref": "AAAAAAFX5Xd9NzBGrw0=" 1531 | }, 1532 | "visible": false, 1533 | "fillColor": "#fff5d8", 1534 | "font": "Arial;13;0", 1535 | "left": -48, 1536 | "top": -16, 1537 | "height": 13, 1538 | "horizontalAlignment": 1 1539 | } 1540 | ], 1541 | "fillColor": "#fff5d8", 1542 | "font": "Arial;13;0", 1543 | "left": 208, 1544 | "top": 320, 1545 | "width": 113, 1546 | "height": 25, 1547 | "stereotypeLabel": { 1548 | "$ref": "AAAAAAFX5Xd9NzBHr+c=" 1549 | }, 1550 | "nameLabel": { 1551 | "$ref": "AAAAAAFX5Xd9ODBIVn4=" 1552 | }, 1553 | "namespaceLabel": { 1554 | "$ref": "AAAAAAFX5Xd9ODBJc0M=" 1555 | }, 1556 | "propertyLabel": { 1557 | "$ref": "AAAAAAFX5Xd9OzBKeOk=" 1558 | } 1559 | }, 1560 | { 1561 | "_type": "UMLAttributeCompartmentView", 1562 | "_id": "AAAAAAFX5Xd9OzBLeUw=", 1563 | "_parent": { 1564 | "$ref": "AAAAAAFX5Xd9NzBFqQ0=" 1565 | }, 1566 | "model": { 1567 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1568 | }, 1569 | "fillColor": "#fff5d8", 1570 | "font": "Arial;13;0", 1571 | "left": 208, 1572 | "top": 345, 1573 | "width": 113, 1574 | "height": 10 1575 | }, 1576 | { 1577 | "_type": "UMLOperationCompartmentView", 1578 | "_id": "AAAAAAFX5Xd9OzBM39g=", 1579 | "_parent": { 1580 | "$ref": "AAAAAAFX5Xd9NzBFqQ0=" 1581 | }, 1582 | "model": { 1583 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1584 | }, 1585 | "fillColor": "#fff5d8", 1586 | "font": "Arial;13;0", 1587 | "left": 208, 1588 | "top": 355, 1589 | "width": 113, 1590 | "height": 10 1591 | }, 1592 | { 1593 | "_type": "UMLReceptionCompartmentView", 1594 | "_id": "AAAAAAFX5Xd9PDBNaDc=", 1595 | "_parent": { 1596 | "$ref": "AAAAAAFX5Xd9NzBFqQ0=" 1597 | }, 1598 | "model": { 1599 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1600 | }, 1601 | "visible": false, 1602 | "fillColor": "#fff5d8", 1603 | "font": "Arial;13;0", 1604 | "left": -24, 1605 | "top": -8, 1606 | "width": 10, 1607 | "height": 10 1608 | }, 1609 | { 1610 | "_type": "UMLTemplateParameterCompartmentView", 1611 | "_id": "AAAAAAFX5Xd9PDBOYwc=", 1612 | "_parent": { 1613 | "$ref": "AAAAAAFX5Xd9NzBFqQ0=" 1614 | }, 1615 | "model": { 1616 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1617 | }, 1618 | "visible": false, 1619 | "fillColor": "#fff5d8", 1620 | "font": "Arial;13;0", 1621 | "left": -24, 1622 | "top": -8, 1623 | "width": 10, 1624 | "height": 10 1625 | } 1626 | ], 1627 | "fillColor": "#fff5d8", 1628 | "font": "Arial;13;0", 1629 | "containerChangeable": true, 1630 | "left": 208, 1631 | "top": 320, 1632 | "width": 113, 1633 | "height": 73, 1634 | "nameCompartment": { 1635 | "$ref": "AAAAAAFX5Xd9NzBGrw0=" 1636 | }, 1637 | "attributeCompartment": { 1638 | "$ref": "AAAAAAFX5Xd9OzBLeUw=" 1639 | }, 1640 | "operationCompartment": { 1641 | "$ref": "AAAAAAFX5Xd9OzBM39g=" 1642 | }, 1643 | "receptionCompartment": { 1644 | "$ref": "AAAAAAFX5Xd9PDBNaDc=" 1645 | }, 1646 | "templateParameterCompartment": { 1647 | "$ref": "AAAAAAFX5Xd9PDBOYwc=" 1648 | } 1649 | }, 1650 | { 1651 | "_type": "UMLGeneralizationView", 1652 | "_id": "AAAAAAFX5Xek1TBvjsY=", 1653 | "_parent": { 1654 | "$ref": "AAAAAAFX1k04LvLshj4=" 1655 | }, 1656 | "model": { 1657 | "$ref": "AAAAAAFX5Xek1DBtQ/I=" 1658 | }, 1659 | "subViews": [ 1660 | { 1661 | "_type": "EdgeLabelView", 1662 | "_id": "AAAAAAFX5Xek1jBwUg4=", 1663 | "_parent": { 1664 | "$ref": "AAAAAAFX5Xek1TBvjsY=" 1665 | }, 1666 | "model": { 1667 | "$ref": "AAAAAAFX5Xek1DBtQ/I=" 1668 | }, 1669 | "visible": false, 1670 | "font": "Arial;13;0", 1671 | "left": 249, 1672 | "top": 281, 1673 | "height": 13, 1674 | "alpha": 1.5707963267948966, 1675 | "distance": 15, 1676 | "hostEdge": { 1677 | "$ref": "AAAAAAFX5Xek1TBvjsY=" 1678 | }, 1679 | "edgePosition": 1 1680 | }, 1681 | { 1682 | "_type": "EdgeLabelView", 1683 | "_id": "AAAAAAFX5Xek1jBx1XI=", 1684 | "_parent": { 1685 | "$ref": "AAAAAAFX5Xek1TBvjsY=" 1686 | }, 1687 | "model": { 1688 | "$ref": "AAAAAAFX5Xek1DBtQ/I=" 1689 | }, 1690 | "visible": null, 1691 | "font": "Arial;13;0", 1692 | "left": 234, 1693 | "top": 281, 1694 | "height": 13, 1695 | "alpha": 1.5707963267948966, 1696 | "distance": 30, 1697 | "hostEdge": { 1698 | "$ref": "AAAAAAFX5Xek1TBvjsY=" 1699 | }, 1700 | "edgePosition": 1 1701 | }, 1702 | { 1703 | "_type": "EdgeLabelView", 1704 | "_id": "AAAAAAFX5Xek1zBye9s=", 1705 | "_parent": { 1706 | "$ref": "AAAAAAFX5Xek1TBvjsY=" 1707 | }, 1708 | "model": { 1709 | "$ref": "AAAAAAFX5Xek1DBtQ/I=" 1710 | }, 1711 | "visible": false, 1712 | "font": "Arial;13;0", 1713 | "left": 278, 1714 | "top": 282, 1715 | "height": 13, 1716 | "alpha": -1.5707963267948966, 1717 | "distance": 15, 1718 | "hostEdge": { 1719 | "$ref": "AAAAAAFX5Xek1TBvjsY=" 1720 | }, 1721 | "edgePosition": 1 1722 | } 1723 | ], 1724 | "font": "Arial;13;0", 1725 | "head": { 1726 | "$ref": "AAAAAAFX5XdoSDAbPno=" 1727 | }, 1728 | "tail": { 1729 | "$ref": "AAAAAAFX5Xd9NzBFqQ0=" 1730 | }, 1731 | "lineStyle": 1, 1732 | "points": "264:319;264:257", 1733 | "showVisibility": true, 1734 | "nameLabel": { 1735 | "$ref": "AAAAAAFX5Xek1jBwUg4=" 1736 | }, 1737 | "stereotypeLabel": { 1738 | "$ref": "AAAAAAFX5Xek1jBx1XI=" 1739 | }, 1740 | "propertyLabel": { 1741 | "$ref": "AAAAAAFX5Xek1zBye9s=" 1742 | } 1743 | } 1744 | ] 1745 | }, 1746 | { 1747 | "_type": "UMLClass", 1748 | "_id": "AAAAAAFX5XdoRjAZDOI=", 1749 | "_parent": { 1750 | "$ref": "AAAAAAFX1k0dJ/LoEKk=" 1751 | }, 1752 | "name": "SuperClass" 1753 | }, 1754 | { 1755 | "_type": "UMLClass", 1756 | "_id": "AAAAAAFX5Xd9NjBDaQ8=", 1757 | "_parent": { 1758 | "$ref": "AAAAAAFX1k0dJ/LoEKk=" 1759 | }, 1760 | "name": "SubClass", 1761 | "ownedElements": [ 1762 | { 1763 | "_type": "UMLGeneralization", 1764 | "_id": "AAAAAAFX5Xek1DBtQ/I=", 1765 | "_parent": { 1766 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1767 | }, 1768 | "source": { 1769 | "$ref": "AAAAAAFX5Xd9NjBDaQ8=" 1770 | }, 1771 | "target": { 1772 | "$ref": "AAAAAAFX5XdoRjAZDOI=" 1773 | } 1774 | } 1775 | ] 1776 | } 1777 | ] 1778 | }, 1779 | { 1780 | "_type": "UMLModel", 1781 | "_id": "AAAAAAFX1k1Hq/L4rW4=", 1782 | "_parent": { 1783 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 1784 | }, 1785 | "name": "Association Class", 1786 | "ownedElements": [ 1787 | { 1788 | "_type": "UMLClassDiagram", 1789 | "_id": "AAAAAAFX1k2dVvL8fmM=", 1790 | "_parent": { 1791 | "$ref": "AAAAAAFX1k1Hq/L4rW4=" 1792 | }, 1793 | "name": "Class Diagram", 1794 | "ownedViews": [ 1795 | { 1796 | "_type": "UMLClassView", 1797 | "_id": "AAAAAAFX5WTCRS5RIOs=", 1798 | "_parent": { 1799 | "$ref": "AAAAAAFX1k2dVvL8fmM=" 1800 | }, 1801 | "model": { 1802 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 1803 | }, 1804 | "subViews": [ 1805 | { 1806 | "_type": "UMLNameCompartmentView", 1807 | "_id": "AAAAAAFX5WTCRS5SNoU=", 1808 | "_parent": { 1809 | "$ref": "AAAAAAFX5WTCRS5RIOs=" 1810 | }, 1811 | "model": { 1812 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 1813 | }, 1814 | "subViews": [ 1815 | { 1816 | "_type": "LabelView", 1817 | "_id": "AAAAAAFX5WTCRi5Tpm0=", 1818 | "_parent": { 1819 | "$ref": "AAAAAAFX5WTCRS5SNoU=" 1820 | }, 1821 | "visible": false, 1822 | "fillColor": "#fff5d8", 1823 | "font": "Arial;13;0", 1824 | "left": -16, 1825 | "top": -16, 1826 | "height": 13 1827 | }, 1828 | { 1829 | "_type": "LabelView", 1830 | "_id": "AAAAAAFX5WTCRi5UFTc=", 1831 | "_parent": { 1832 | "$ref": "AAAAAAFX5WTCRS5SNoU=" 1833 | }, 1834 | "fillColor": "#fff5d8", 1835 | "font": "Arial;13;1", 1836 | "left": 117, 1837 | "top": 263, 1838 | "width": 103, 1839 | "height": 13, 1840 | "text": "Class1" 1841 | }, 1842 | { 1843 | "_type": "LabelView", 1844 | "_id": "AAAAAAFX5WTCRi5V/FU=", 1845 | "_parent": { 1846 | "$ref": "AAAAAAFX5WTCRS5SNoU=" 1847 | }, 1848 | "visible": false, 1849 | "fillColor": "#fff5d8", 1850 | "font": "Arial;13;0", 1851 | "left": -16, 1852 | "top": -16, 1853 | "width": 142, 1854 | "height": 13, 1855 | "text": "(from Association Class)" 1856 | }, 1857 | { 1858 | "_type": "LabelView", 1859 | "_id": "AAAAAAFX5WTCRi5WG+g=", 1860 | "_parent": { 1861 | "$ref": "AAAAAAFX5WTCRS5SNoU=" 1862 | }, 1863 | "visible": false, 1864 | "fillColor": "#fff5d8", 1865 | "font": "Arial;13;0", 1866 | "left": -16, 1867 | "top": -16, 1868 | "height": 13, 1869 | "horizontalAlignment": 1 1870 | } 1871 | ], 1872 | "fillColor": "#fff5d8", 1873 | "font": "Arial;13;0", 1874 | "left": 112, 1875 | "top": 256, 1876 | "width": 113, 1877 | "height": 25, 1878 | "stereotypeLabel": { 1879 | "$ref": "AAAAAAFX5WTCRi5Tpm0=" 1880 | }, 1881 | "nameLabel": { 1882 | "$ref": "AAAAAAFX5WTCRi5UFTc=" 1883 | }, 1884 | "namespaceLabel": { 1885 | "$ref": "AAAAAAFX5WTCRi5V/FU=" 1886 | }, 1887 | "propertyLabel": { 1888 | "$ref": "AAAAAAFX5WTCRi5WG+g=" 1889 | } 1890 | }, 1891 | { 1892 | "_type": "UMLAttributeCompartmentView", 1893 | "_id": "AAAAAAFX5WTCRi5XSUo=", 1894 | "_parent": { 1895 | "$ref": "AAAAAAFX5WTCRS5RIOs=" 1896 | }, 1897 | "model": { 1898 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 1899 | }, 1900 | "fillColor": "#fff5d8", 1901 | "font": "Arial;13;0", 1902 | "left": 112, 1903 | "top": 281, 1904 | "width": 113, 1905 | "height": 10 1906 | }, 1907 | { 1908 | "_type": "UMLOperationCompartmentView", 1909 | "_id": "AAAAAAFX5WTCRy5YYGA=", 1910 | "_parent": { 1911 | "$ref": "AAAAAAFX5WTCRS5RIOs=" 1912 | }, 1913 | "model": { 1914 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 1915 | }, 1916 | "fillColor": "#fff5d8", 1917 | "font": "Arial;13;0", 1918 | "left": 112, 1919 | "top": 291, 1920 | "width": 113, 1921 | "height": 10 1922 | }, 1923 | { 1924 | "_type": "UMLReceptionCompartmentView", 1925 | "_id": "AAAAAAFX5WTCRy5Zjb4=", 1926 | "_parent": { 1927 | "$ref": "AAAAAAFX5WTCRS5RIOs=" 1928 | }, 1929 | "model": { 1930 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 1931 | }, 1932 | "visible": false, 1933 | "fillColor": "#fff5d8", 1934 | "font": "Arial;13;0", 1935 | "left": -8, 1936 | "top": -8, 1937 | "width": 10, 1938 | "height": 10 1939 | }, 1940 | { 1941 | "_type": "UMLTemplateParameterCompartmentView", 1942 | "_id": "AAAAAAFX5WTCRy5aqKQ=", 1943 | "_parent": { 1944 | "$ref": "AAAAAAFX5WTCRS5RIOs=" 1945 | }, 1946 | "model": { 1947 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 1948 | }, 1949 | "visible": false, 1950 | "fillColor": "#fff5d8", 1951 | "font": "Arial;13;0", 1952 | "left": -8, 1953 | "top": -8, 1954 | "width": 10, 1955 | "height": 10 1956 | } 1957 | ], 1958 | "fillColor": "#fff5d8", 1959 | "font": "Arial;13;0", 1960 | "containerChangeable": true, 1961 | "left": 112, 1962 | "top": 256, 1963 | "width": 113, 1964 | "height": 97, 1965 | "nameCompartment": { 1966 | "$ref": "AAAAAAFX5WTCRS5SNoU=" 1967 | }, 1968 | "attributeCompartment": { 1969 | "$ref": "AAAAAAFX5WTCRi5XSUo=" 1970 | }, 1971 | "operationCompartment": { 1972 | "$ref": "AAAAAAFX5WTCRy5YYGA=" 1973 | }, 1974 | "receptionCompartment": { 1975 | "$ref": "AAAAAAFX5WTCRy5Zjb4=" 1976 | }, 1977 | "templateParameterCompartment": { 1978 | "$ref": "AAAAAAFX5WTCRy5aqKQ=" 1979 | } 1980 | }, 1981 | { 1982 | "_type": "UMLClassView", 1983 | "_id": "AAAAAAFX5WTNvi560xU=", 1984 | "_parent": { 1985 | "$ref": "AAAAAAFX1k2dVvL8fmM=" 1986 | }, 1987 | "model": { 1988 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 1989 | }, 1990 | "subViews": [ 1991 | { 1992 | "_type": "UMLNameCompartmentView", 1993 | "_id": "AAAAAAFX5WTNvi57qPY=", 1994 | "_parent": { 1995 | "$ref": "AAAAAAFX5WTNvi560xU=" 1996 | }, 1997 | "model": { 1998 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 1999 | }, 2000 | "subViews": [ 2001 | { 2002 | "_type": "LabelView", 2003 | "_id": "AAAAAAFX5WTNvi58uN8=", 2004 | "_parent": { 2005 | "$ref": "AAAAAAFX5WTNvi57qPY=" 2006 | }, 2007 | "visible": false, 2008 | "fillColor": "#fff5d8", 2009 | "font": "Arial;13;0", 2010 | "left": 272, 2011 | "top": -32, 2012 | "height": 13 2013 | }, 2014 | { 2015 | "_type": "LabelView", 2016 | "_id": "AAAAAAFX5WTNvi59iO4=", 2017 | "_parent": { 2018 | "$ref": "AAAAAAFX5WTNvi57qPY=" 2019 | }, 2020 | "fillColor": "#fff5d8", 2021 | "font": "Arial;13;1", 2022 | "left": 397, 2023 | "top": 255, 2024 | "width": 103, 2025 | "height": 13, 2026 | "text": "Class2" 2027 | }, 2028 | { 2029 | "_type": "LabelView", 2030 | "_id": "AAAAAAFX5WTNvi5+heQ=", 2031 | "_parent": { 2032 | "$ref": "AAAAAAFX5WTNvi57qPY=" 2033 | }, 2034 | "visible": false, 2035 | "fillColor": "#fff5d8", 2036 | "font": "Arial;13;0", 2037 | "left": 272, 2038 | "top": -32, 2039 | "width": 142, 2040 | "height": 13, 2041 | "text": "(from Association Class)" 2042 | }, 2043 | { 2044 | "_type": "LabelView", 2045 | "_id": "AAAAAAFX5WTNvy5/kec=", 2046 | "_parent": { 2047 | "$ref": "AAAAAAFX5WTNvi57qPY=" 2048 | }, 2049 | "visible": false, 2050 | "fillColor": "#fff5d8", 2051 | "font": "Arial;13;0", 2052 | "left": 272, 2053 | "top": -32, 2054 | "height": 13, 2055 | "horizontalAlignment": 1 2056 | } 2057 | ], 2058 | "fillColor": "#fff5d8", 2059 | "font": "Arial;13;0", 2060 | "left": 392, 2061 | "top": 248, 2062 | "width": 113, 2063 | "height": 25, 2064 | "stereotypeLabel": { 2065 | "$ref": "AAAAAAFX5WTNvi58uN8=" 2066 | }, 2067 | "nameLabel": { 2068 | "$ref": "AAAAAAFX5WTNvi59iO4=" 2069 | }, 2070 | "namespaceLabel": { 2071 | "$ref": "AAAAAAFX5WTNvi5+heQ=" 2072 | }, 2073 | "propertyLabel": { 2074 | "$ref": "AAAAAAFX5WTNvy5/kec=" 2075 | } 2076 | }, 2077 | { 2078 | "_type": "UMLAttributeCompartmentView", 2079 | "_id": "AAAAAAFX5WTNvy6ApaQ=", 2080 | "_parent": { 2081 | "$ref": "AAAAAAFX5WTNvi560xU=" 2082 | }, 2083 | "model": { 2084 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 2085 | }, 2086 | "fillColor": "#fff5d8", 2087 | "font": "Arial;13;0", 2088 | "left": 392, 2089 | "top": 273, 2090 | "width": 113, 2091 | "height": 10 2092 | }, 2093 | { 2094 | "_type": "UMLOperationCompartmentView", 2095 | "_id": "AAAAAAFX5WTNvy6BI4c=", 2096 | "_parent": { 2097 | "$ref": "AAAAAAFX5WTNvi560xU=" 2098 | }, 2099 | "model": { 2100 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 2101 | }, 2102 | "fillColor": "#fff5d8", 2103 | "font": "Arial;13;0", 2104 | "left": 392, 2105 | "top": 283, 2106 | "width": 113, 2107 | "height": 10 2108 | }, 2109 | { 2110 | "_type": "UMLReceptionCompartmentView", 2111 | "_id": "AAAAAAFX5WTNwC6CA34=", 2112 | "_parent": { 2113 | "$ref": "AAAAAAFX5WTNvi560xU=" 2114 | }, 2115 | "model": { 2116 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 2117 | }, 2118 | "visible": false, 2119 | "fillColor": "#fff5d8", 2120 | "font": "Arial;13;0", 2121 | "left": 136, 2122 | "top": -16, 2123 | "width": 10, 2124 | "height": 10 2125 | }, 2126 | { 2127 | "_type": "UMLTemplateParameterCompartmentView", 2128 | "_id": "AAAAAAFX5WTNwC6DGR4=", 2129 | "_parent": { 2130 | "$ref": "AAAAAAFX5WTNvi560xU=" 2131 | }, 2132 | "model": { 2133 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 2134 | }, 2135 | "visible": false, 2136 | "fillColor": "#fff5d8", 2137 | "font": "Arial;13;0", 2138 | "left": 136, 2139 | "top": -16, 2140 | "width": 10, 2141 | "height": 10 2142 | } 2143 | ], 2144 | "fillColor": "#fff5d8", 2145 | "font": "Arial;13;0", 2146 | "containerChangeable": true, 2147 | "left": 392, 2148 | "top": 248, 2149 | "width": 113, 2150 | "height": 97, 2151 | "nameCompartment": { 2152 | "$ref": "AAAAAAFX5WTNvi57qPY=" 2153 | }, 2154 | "attributeCompartment": { 2155 | "$ref": "AAAAAAFX5WTNvy6ApaQ=" 2156 | }, 2157 | "operationCompartment": { 2158 | "$ref": "AAAAAAFX5WTNvy6BI4c=" 2159 | }, 2160 | "receptionCompartment": { 2161 | "$ref": "AAAAAAFX5WTNwC6CA34=" 2162 | }, 2163 | "templateParameterCompartment": { 2164 | "$ref": "AAAAAAFX5WTNwC6DGR4=" 2165 | } 2166 | }, 2167 | { 2168 | "_type": "UMLAssociationView", 2169 | "_id": "AAAAAAFX5WTZVS6lZc4=", 2170 | "_parent": { 2171 | "$ref": "AAAAAAFX1k2dVvL8fmM=" 2172 | }, 2173 | "model": { 2174 | "$ref": "AAAAAAFX5WTZVC6h8Mw=" 2175 | }, 2176 | "subViews": [ 2177 | { 2178 | "_type": "EdgeLabelView", 2179 | "_id": "AAAAAAFX5WTZVi6ms5E=", 2180 | "_parent": { 2181 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2182 | }, 2183 | "model": { 2184 | "$ref": "AAAAAAFX5WTZVC6h8Mw=" 2185 | }, 2186 | "visible": false, 2187 | "font": "Arial;13;0", 2188 | "left": 307, 2189 | "top": 279, 2190 | "height": 13, 2191 | "alpha": 1.5707963267948966, 2192 | "distance": 15, 2193 | "hostEdge": { 2194 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2195 | }, 2196 | "edgePosition": 1 2197 | }, 2198 | { 2199 | "_type": "EdgeLabelView", 2200 | "_id": "AAAAAAFX5WTZVi6n7yw=", 2201 | "_parent": { 2202 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2203 | }, 2204 | "model": { 2205 | "$ref": "AAAAAAFX5WTZVC6h8Mw=" 2206 | }, 2207 | "visible": null, 2208 | "font": "Arial;13;0", 2209 | "left": 307, 2210 | "top": 264, 2211 | "height": 13, 2212 | "alpha": 1.5707963267948966, 2213 | "distance": 30, 2214 | "hostEdge": { 2215 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2216 | }, 2217 | "edgePosition": 1 2218 | }, 2219 | { 2220 | "_type": "EdgeLabelView", 2221 | "_id": "AAAAAAFX5WTZVi6o2q0=", 2222 | "_parent": { 2223 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2224 | }, 2225 | "model": { 2226 | "$ref": "AAAAAAFX5WTZVC6h8Mw=" 2227 | }, 2228 | "visible": false, 2229 | "font": "Arial;13;0", 2230 | "left": 308, 2231 | "top": 308, 2232 | "height": 13, 2233 | "alpha": -1.5707963267948966, 2234 | "distance": 15, 2235 | "hostEdge": { 2236 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2237 | }, 2238 | "edgePosition": 1 2239 | }, 2240 | { 2241 | "_type": "EdgeLabelView", 2242 | "_id": "AAAAAAFX5WTZVi6pynw=", 2243 | "_parent": { 2244 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2245 | }, 2246 | "model": { 2247 | "$ref": "AAAAAAFX5WTZVC6iewk=" 2248 | }, 2249 | "visible": false, 2250 | "font": "Arial;13;0", 2251 | "left": 250, 2252 | "top": 280, 2253 | "height": 13, 2254 | "alpha": 0.5235987755982988, 2255 | "distance": 30, 2256 | "hostEdge": { 2257 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2258 | }, 2259 | "edgePosition": 2 2260 | }, 2261 | { 2262 | "_type": "EdgeLabelView", 2263 | "_id": "AAAAAAFX5WTZVi6q+Vo=", 2264 | "_parent": { 2265 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2266 | }, 2267 | "model": { 2268 | "$ref": "AAAAAAFX5WTZVC6iewk=" 2269 | }, 2270 | "visible": false, 2271 | "font": "Arial;13;0", 2272 | "left": 252, 2273 | "top": 267, 2274 | "height": 13, 2275 | "alpha": 0.7853981633974483, 2276 | "distance": 40, 2277 | "hostEdge": { 2278 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2279 | }, 2280 | "edgePosition": 2 2281 | }, 2282 | { 2283 | "_type": "EdgeLabelView", 2284 | "_id": "AAAAAAFX5WTZVi6rxeA=", 2285 | "_parent": { 2286 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2287 | }, 2288 | "model": { 2289 | "$ref": "AAAAAAFX5WTZVC6iewk=" 2290 | }, 2291 | "visible": false, 2292 | "font": "Arial;13;0", 2293 | "left": 246, 2294 | "top": 307, 2295 | "height": 13, 2296 | "alpha": -0.5235987755982988, 2297 | "distance": 25, 2298 | "hostEdge": { 2299 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2300 | }, 2301 | "edgePosition": 2 2302 | }, 2303 | { 2304 | "_type": "EdgeLabelView", 2305 | "_id": "AAAAAAFX5WTZVi6s2x8=", 2306 | "_parent": { 2307 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2308 | }, 2309 | "model": { 2310 | "$ref": "AAAAAAFX5WTZVC6jx1I=" 2311 | }, 2312 | "visible": false, 2313 | "font": "Arial;13;0", 2314 | "left": 364, 2315 | "top": 277, 2316 | "height": 13, 2317 | "alpha": -0.5235987755982988, 2318 | "distance": 30, 2319 | "hostEdge": { 2320 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2321 | } 2322 | }, 2323 | { 2324 | "_type": "EdgeLabelView", 2325 | "_id": "AAAAAAFX5WTZVy6t+Wk=", 2326 | "_parent": { 2327 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2328 | }, 2329 | "model": { 2330 | "$ref": "AAAAAAFX5WTZVC6jx1I=" 2331 | }, 2332 | "visible": false, 2333 | "font": "Arial;13;0", 2334 | "left": 362, 2335 | "top": 264, 2336 | "height": 13, 2337 | "alpha": -0.7853981633974483, 2338 | "distance": 40, 2339 | "hostEdge": { 2340 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2341 | } 2342 | }, 2343 | { 2344 | "_type": "EdgeLabelView", 2345 | "_id": "AAAAAAFX5WTZVy6uNOg=", 2346 | "_parent": { 2347 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2348 | }, 2349 | "model": { 2350 | "$ref": "AAAAAAFX5WTZVC6jx1I=" 2351 | }, 2352 | "visible": false, 2353 | "font": "Arial;13;0", 2354 | "left": 369, 2355 | "top": 305, 2356 | "height": 13, 2357 | "alpha": 0.5235987755982988, 2358 | "distance": 25, 2359 | "hostEdge": { 2360 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2361 | } 2362 | }, 2363 | { 2364 | "_type": "UMLQualifierCompartmentView", 2365 | "_id": "AAAAAAFX5WTZVy6vr6A=", 2366 | "_parent": { 2367 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2368 | }, 2369 | "model": { 2370 | "$ref": "AAAAAAFX5WTZVC6iewk=" 2371 | }, 2372 | "visible": false, 2373 | "font": "Arial;13;0", 2374 | "width": 10, 2375 | "height": 10 2376 | }, 2377 | { 2378 | "_type": "UMLQualifierCompartmentView", 2379 | "_id": "AAAAAAFX5WTZVy6w/Xg=", 2380 | "_parent": { 2381 | "$ref": "AAAAAAFX5WTZVS6lZc4=" 2382 | }, 2383 | "model": { 2384 | "$ref": "AAAAAAFX5WTZVC6jx1I=" 2385 | }, 2386 | "visible": false, 2387 | "font": "Arial;13;0", 2388 | "width": 10, 2389 | "height": 10 2390 | } 2391 | ], 2392 | "font": "Arial;13;0", 2393 | "head": { 2394 | "$ref": "AAAAAAFX5WTNvi560xU=" 2395 | }, 2396 | "tail": { 2397 | "$ref": "AAAAAAFX5WTCRS5RIOs=" 2398 | }, 2399 | "lineStyle": 1, 2400 | "points": "225:302;391:298", 2401 | "showVisibility": true, 2402 | "nameLabel": { 2403 | "$ref": "AAAAAAFX5WTZVi6ms5E=" 2404 | }, 2405 | "stereotypeLabel": { 2406 | "$ref": "AAAAAAFX5WTZVi6n7yw=" 2407 | }, 2408 | "propertyLabel": { 2409 | "$ref": "AAAAAAFX5WTZVi6o2q0=" 2410 | }, 2411 | "tailRoleNameLabel": { 2412 | "$ref": "AAAAAAFX5WTZVi6pynw=" 2413 | }, 2414 | "tailPropertyLabel": { 2415 | "$ref": "AAAAAAFX5WTZVi6q+Vo=" 2416 | }, 2417 | "tailMultiplicityLabel": { 2418 | "$ref": "AAAAAAFX5WTZVi6rxeA=" 2419 | }, 2420 | "headRoleNameLabel": { 2421 | "$ref": "AAAAAAFX5WTZVi6s2x8=" 2422 | }, 2423 | "headPropertyLabel": { 2424 | "$ref": "AAAAAAFX5WTZVy6t+Wk=" 2425 | }, 2426 | "headMultiplicityLabel": { 2427 | "$ref": "AAAAAAFX5WTZVy6uNOg=" 2428 | }, 2429 | "tailQualifiersCompartment": { 2430 | "$ref": "AAAAAAFX5WTZVy6vr6A=" 2431 | }, 2432 | "headQualifiersCompartment": { 2433 | "$ref": "AAAAAAFX5WTZVy6w/Xg=" 2434 | } 2435 | } 2436 | ] 2437 | }, 2438 | { 2439 | "_type": "UMLClass", 2440 | "_id": "AAAAAAFX5WTCRC5PNi4=", 2441 | "_parent": { 2442 | "$ref": "AAAAAAFX1k1Hq/L4rW4=" 2443 | }, 2444 | "name": "Class1", 2445 | "ownedElements": [ 2446 | { 2447 | "_type": "UMLAssociation", 2448 | "_id": "AAAAAAFX5WTZVC6h8Mw=", 2449 | "_parent": { 2450 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 2451 | }, 2452 | "end1": { 2453 | "_type": "UMLAssociationEnd", 2454 | "_id": "AAAAAAFX5WTZVC6iewk=", 2455 | "_parent": { 2456 | "$ref": "AAAAAAFX5WTZVC6h8Mw=" 2457 | }, 2458 | "reference": { 2459 | "$ref": "AAAAAAFX5WTCRC5PNi4=" 2460 | } 2461 | }, 2462 | "end2": { 2463 | "_type": "UMLAssociationEnd", 2464 | "_id": "AAAAAAFX5WTZVC6jx1I=", 2465 | "_parent": { 2466 | "$ref": "AAAAAAFX5WTZVC6h8Mw=" 2467 | }, 2468 | "reference": { 2469 | "$ref": "AAAAAAFX5WTNvS54Rb4=" 2470 | } 2471 | } 2472 | } 2473 | ] 2474 | }, 2475 | { 2476 | "_type": "UMLClass", 2477 | "_id": "AAAAAAFX5WTNvS54Rb4=", 2478 | "_parent": { 2479 | "$ref": "AAAAAAFX1k1Hq/L4rW4=" 2480 | }, 2481 | "name": "Class2" 2482 | } 2483 | ] 2484 | }, 2485 | { 2486 | "_type": "UMLModel", 2487 | "_id": "AAAAAAFdCNzRcLfSdZY=", 2488 | "_parent": { 2489 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 2490 | }, 2491 | "name": "Association Class in a Package", 2492 | "ownedElements": [ 2493 | { 2494 | "_type": "UMLClassDiagram", 2495 | "_id": "AAAAAAFdCN0kxrffG2M=", 2496 | "_parent": { 2497 | "$ref": "AAAAAAFdCNzRcLfSdZY=" 2498 | }, 2499 | "name": "ClassDiagram", 2500 | "ownedViews": [ 2501 | { 2502 | "_type": "UMLClassView", 2503 | "_id": "AAAAAAFdCN2d4rf5yaA=", 2504 | "_parent": { 2505 | "$ref": "AAAAAAFdCN0kxrffG2M=" 2506 | }, 2507 | "model": { 2508 | "$ref": "AAAAAAFdCN2d4rf3cik=" 2509 | }, 2510 | "subViews": [ 2511 | { 2512 | "_type": "UMLNameCompartmentView", 2513 | "_id": "AAAAAAFdCN2d47f6+tU=", 2514 | "_parent": { 2515 | "$ref": "AAAAAAFdCN2d4rf5yaA=" 2516 | }, 2517 | "model": { 2518 | "$ref": "AAAAAAFdCN2d4rf3cik=" 2519 | }, 2520 | "subViews": [ 2521 | { 2522 | "_type": "LabelView", 2523 | "_id": "AAAAAAFdCN2d5Lf7hBQ=", 2524 | "_parent": { 2525 | "$ref": "AAAAAAFdCN2d47f6+tU=" 2526 | }, 2527 | "visible": false, 2528 | "fillColor": "#fff5d8", 2529 | "font": "Arial;13;0", 2530 | "height": 13 2531 | }, 2532 | { 2533 | "_type": "LabelView", 2534 | "_id": "AAAAAAFdCN2d5bf8OdU=", 2535 | "_parent": { 2536 | "$ref": "AAAAAAFdCN2d47f6+tU=" 2537 | }, 2538 | "fillColor": "#fff5d8", 2539 | "font": "Arial;13;1", 2540 | "left": 101, 2541 | "top": 279, 2542 | "width": 128, 2543 | "height": 13, 2544 | "text": "Class1" 2545 | }, 2546 | { 2547 | "_type": "LabelView", 2548 | "_id": "AAAAAAFdCN2d5bf9pKI=", 2549 | "_parent": { 2550 | "$ref": "AAAAAAFdCN2d47f6+tU=" 2551 | }, 2552 | "visible": false, 2553 | "fillColor": "#fff5d8", 2554 | "font": "Arial;13;0", 2555 | "width": 222, 2556 | "height": 13, 2557 | "text": "(from Association Class in a Package)" 2558 | }, 2559 | { 2560 | "_type": "LabelView", 2561 | "_id": "AAAAAAFdCN2d5bf+94k=", 2562 | "_parent": { 2563 | "$ref": "AAAAAAFdCN2d47f6+tU=" 2564 | }, 2565 | "visible": false, 2566 | "fillColor": "#fff5d8", 2567 | "font": "Arial;13;0", 2568 | "height": 13, 2569 | "horizontalAlignment": 1 2570 | } 2571 | ], 2572 | "fillColor": "#fff5d8", 2573 | "font": "Arial;13;0", 2574 | "left": 96, 2575 | "top": 272, 2576 | "width": 138, 2577 | "height": 25, 2578 | "stereotypeLabel": { 2579 | "$ref": "AAAAAAFdCN2d5Lf7hBQ=" 2580 | }, 2581 | "nameLabel": { 2582 | "$ref": "AAAAAAFdCN2d5bf8OdU=" 2583 | }, 2584 | "namespaceLabel": { 2585 | "$ref": "AAAAAAFdCN2d5bf9pKI=" 2586 | }, 2587 | "propertyLabel": { 2588 | "$ref": "AAAAAAFdCN2d5bf+94k=" 2589 | } 2590 | }, 2591 | { 2592 | "_type": "UMLAttributeCompartmentView", 2593 | "_id": "AAAAAAFdCN2d5bf/T9U=", 2594 | "_parent": { 2595 | "$ref": "AAAAAAFdCN2d4rf5yaA=" 2596 | }, 2597 | "model": { 2598 | "$ref": "AAAAAAFdCN2d4rf3cik=" 2599 | }, 2600 | "fillColor": "#fff5d8", 2601 | "font": "Arial;13;0", 2602 | "left": 96, 2603 | "top": 297, 2604 | "width": 138, 2605 | "height": 10 2606 | }, 2607 | { 2608 | "_type": "UMLOperationCompartmentView", 2609 | "_id": "AAAAAAFdCN2d5rgA2tM=", 2610 | "_parent": { 2611 | "$ref": "AAAAAAFdCN2d4rf5yaA=" 2612 | }, 2613 | "model": { 2614 | "$ref": "AAAAAAFdCN2d4rf3cik=" 2615 | }, 2616 | "fillColor": "#fff5d8", 2617 | "font": "Arial;13;0", 2618 | "left": 96, 2619 | "top": 307, 2620 | "width": 138, 2621 | "height": 10 2622 | }, 2623 | { 2624 | "_type": "UMLReceptionCompartmentView", 2625 | "_id": "AAAAAAFdCN2d5rgBp7E=", 2626 | "_parent": { 2627 | "$ref": "AAAAAAFdCN2d4rf5yaA=" 2628 | }, 2629 | "model": { 2630 | "$ref": "AAAAAAFdCN2d4rf3cik=" 2631 | }, 2632 | "visible": false, 2633 | "fillColor": "#fff5d8", 2634 | "font": "Arial;13;0", 2635 | "width": 10, 2636 | "height": 10 2637 | }, 2638 | { 2639 | "_type": "UMLTemplateParameterCompartmentView", 2640 | "_id": "AAAAAAFdCN2d57gCKIw=", 2641 | "_parent": { 2642 | "$ref": "AAAAAAFdCN2d4rf5yaA=" 2643 | }, 2644 | "model": { 2645 | "$ref": "AAAAAAFdCN2d4rf3cik=" 2646 | }, 2647 | "visible": false, 2648 | "fillColor": "#fff5d8", 2649 | "font": "Arial;13;0", 2650 | "width": 10, 2651 | "height": 10 2652 | } 2653 | ], 2654 | "fillColor": "#fff5d8", 2655 | "font": "Arial;13;0", 2656 | "containerChangeable": true, 2657 | "left": 96, 2658 | "top": 272, 2659 | "width": 138, 2660 | "height": 121, 2661 | "nameCompartment": { 2662 | "$ref": "AAAAAAFdCN2d47f6+tU=" 2663 | }, 2664 | "attributeCompartment": { 2665 | "$ref": "AAAAAAFdCN2d5bf/T9U=" 2666 | }, 2667 | "operationCompartment": { 2668 | "$ref": "AAAAAAFdCN2d5rgA2tM=" 2669 | }, 2670 | "receptionCompartment": { 2671 | "$ref": "AAAAAAFdCN2d5rgBp7E=" 2672 | }, 2673 | "templateParameterCompartment": { 2674 | "$ref": "AAAAAAFdCN2d57gCKIw=" 2675 | } 2676 | }, 2677 | { 2678 | "_type": "UMLPackageView", 2679 | "_id": "AAAAAAFdCN4RsbhajAI=", 2680 | "_parent": { 2681 | "$ref": "AAAAAAFdCN0kxrffG2M=" 2682 | }, 2683 | "model": { 2684 | "$ref": "AAAAAAFdCN4RsbhYfIg=" 2685 | }, 2686 | "subViews": [ 2687 | { 2688 | "_type": "UMLNameCompartmentView", 2689 | "_id": "AAAAAAFdCN4RsrhbV6U=", 2690 | "_parent": { 2691 | "$ref": "AAAAAAFdCN4RsbhajAI=" 2692 | }, 2693 | "model": { 2694 | "$ref": "AAAAAAFdCN4RsbhYfIg=" 2695 | }, 2696 | "subViews": [ 2697 | { 2698 | "_type": "LabelView", 2699 | "_id": "AAAAAAFdCN4Rsrhc0+M=", 2700 | "_parent": { 2701 | "$ref": "AAAAAAFdCN4RsrhbV6U=" 2702 | }, 2703 | "visible": false, 2704 | "fillColor": "#fff5d8", 2705 | "font": "Arial;13;0", 2706 | "left": 48, 2707 | "top": 32, 2708 | "height": 13 2709 | }, 2710 | { 2711 | "_type": "LabelView", 2712 | "_id": "AAAAAAFdCN4RsrhdPTo=", 2713 | "_parent": { 2714 | "$ref": "AAAAAAFdCN4RsrhbV6U=" 2715 | }, 2716 | "fillColor": "#fff5d8", 2717 | "font": "Arial;13;1", 2718 | "left": 365, 2719 | "top": 246, 2720 | "width": 207, 2721 | "height": 13, 2722 | "text": "Util" 2723 | }, 2724 | { 2725 | "_type": "LabelView", 2726 | "_id": "AAAAAAFdCN4Rsrhe9Uw=", 2727 | "_parent": { 2728 | "$ref": "AAAAAAFdCN4RsrhbV6U=" 2729 | }, 2730 | "visible": false, 2731 | "fillColor": "#fff5d8", 2732 | "font": "Arial;13;0", 2733 | "left": 48, 2734 | "top": 32, 2735 | "width": 222, 2736 | "height": 13, 2737 | "text": "(from Association Class in a Package)" 2738 | }, 2739 | { 2740 | "_type": "LabelView", 2741 | "_id": "AAAAAAFdCN4RsrhfRQY=", 2742 | "_parent": { 2743 | "$ref": "AAAAAAFdCN4RsrhbV6U=" 2744 | }, 2745 | "visible": false, 2746 | "fillColor": "#fff5d8", 2747 | "font": "Arial;13;0", 2748 | "left": 48, 2749 | "top": 32, 2750 | "height": 13, 2751 | "horizontalAlignment": 1 2752 | } 2753 | ], 2754 | "fillColor": "#fff5d8", 2755 | "font": "Arial;13;0", 2756 | "left": 360, 2757 | "top": 239, 2758 | "width": 217, 2759 | "height": 25, 2760 | "stereotypeLabel": { 2761 | "$ref": "AAAAAAFdCN4Rsrhc0+M=" 2762 | }, 2763 | "nameLabel": { 2764 | "$ref": "AAAAAAFdCN4RsrhdPTo=" 2765 | }, 2766 | "namespaceLabel": { 2767 | "$ref": "AAAAAAFdCN4Rsrhe9Uw=" 2768 | }, 2769 | "propertyLabel": { 2770 | "$ref": "AAAAAAFdCN4RsrhfRQY=" 2771 | } 2772 | } 2773 | ], 2774 | "containedViews": [ 2775 | { 2776 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 2777 | } 2778 | ], 2779 | "fillColor": "#fff5d8", 2780 | "font": "Arial;13;0", 2781 | "containerChangeable": true, 2782 | "left": 360, 2783 | "top": 224, 2784 | "width": 217, 2785 | "height": 217, 2786 | "nameCompartment": { 2787 | "$ref": "AAAAAAFdCN4RsrhbV6U=" 2788 | } 2789 | }, 2790 | { 2791 | "_type": "UMLClassView", 2792 | "_id": "AAAAAAFdCN2+RLgjNFU=", 2793 | "_parent": { 2794 | "$ref": "AAAAAAFdCN0kxrffG2M=" 2795 | }, 2796 | "model": { 2797 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 2798 | }, 2799 | "subViews": [ 2800 | { 2801 | "_type": "UMLNameCompartmentView", 2802 | "_id": "AAAAAAFdCN2+RLgki6c=", 2803 | "_parent": { 2804 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 2805 | }, 2806 | "model": { 2807 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 2808 | }, 2809 | "subViews": [ 2810 | { 2811 | "_type": "LabelView", 2812 | "_id": "AAAAAAFdCN2+Rbgl4eI=", 2813 | "_parent": { 2814 | "$ref": "AAAAAAFdCN2+RLgki6c=" 2815 | }, 2816 | "visible": false, 2817 | "fillColor": "#fff5d8", 2818 | "font": "Arial;13;0", 2819 | "left": 152, 2820 | "top": 296, 2821 | "height": 13 2822 | }, 2823 | { 2824 | "_type": "LabelView", 2825 | "_id": "AAAAAAFdCN2+Rbgmmbw=", 2826 | "_parent": { 2827 | "$ref": "AAAAAAFdCN2+RLgki6c=" 2828 | }, 2829 | "fillColor": "#fff5d8", 2830 | "font": "Arial;13;1", 2831 | "left": 405, 2832 | "top": 287, 2833 | "width": 127, 2834 | "height": 13, 2835 | "text": "Class2" 2836 | }, 2837 | { 2838 | "_type": "LabelView", 2839 | "_id": "AAAAAAFdCN2+RbgnF4w=", 2840 | "_parent": { 2841 | "$ref": "AAAAAAFdCN2+RLgki6c=" 2842 | }, 2843 | "visible": false, 2844 | "fillColor": "#fff5d8", 2845 | "font": "Arial;13;0", 2846 | "left": 152, 2847 | "top": 296, 2848 | "width": 222, 2849 | "height": 13, 2850 | "text": "(from Util)" 2851 | }, 2852 | { 2853 | "_type": "LabelView", 2854 | "_id": "AAAAAAFdCN2+Rbgoo4c=", 2855 | "_parent": { 2856 | "$ref": "AAAAAAFdCN2+RLgki6c=" 2857 | }, 2858 | "visible": false, 2859 | "fillColor": "#fff5d8", 2860 | "font": "Arial;13;0", 2861 | "left": 152, 2862 | "top": 296, 2863 | "height": 13, 2864 | "horizontalAlignment": 1 2865 | } 2866 | ], 2867 | "fillColor": "#fff5d8", 2868 | "font": "Arial;13;0", 2869 | "left": 400, 2870 | "top": 280, 2871 | "width": 137, 2872 | "height": 25, 2873 | "stereotypeLabel": { 2874 | "$ref": "AAAAAAFdCN2+Rbgl4eI=" 2875 | }, 2876 | "nameLabel": { 2877 | "$ref": "AAAAAAFdCN2+Rbgmmbw=" 2878 | }, 2879 | "namespaceLabel": { 2880 | "$ref": "AAAAAAFdCN2+RbgnF4w=" 2881 | }, 2882 | "propertyLabel": { 2883 | "$ref": "AAAAAAFdCN2+Rbgoo4c=" 2884 | } 2885 | }, 2886 | { 2887 | "_type": "UMLAttributeCompartmentView", 2888 | "_id": "AAAAAAFdCN2+RrgpEWk=", 2889 | "_parent": { 2890 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 2891 | }, 2892 | "model": { 2893 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 2894 | }, 2895 | "fillColor": "#fff5d8", 2896 | "font": "Arial;13;0", 2897 | "left": 400, 2898 | "top": 305, 2899 | "width": 137, 2900 | "height": 10 2901 | }, 2902 | { 2903 | "_type": "UMLOperationCompartmentView", 2904 | "_id": "AAAAAAFdCN2+RrgqelM=", 2905 | "_parent": { 2906 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 2907 | }, 2908 | "model": { 2909 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 2910 | }, 2911 | "fillColor": "#fff5d8", 2912 | "font": "Arial;13;0", 2913 | "left": 400, 2914 | "top": 315, 2915 | "width": 137, 2916 | "height": 10 2917 | }, 2918 | { 2919 | "_type": "UMLReceptionCompartmentView", 2920 | "_id": "AAAAAAFdCN2+RrgrTSs=", 2921 | "_parent": { 2922 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 2923 | }, 2924 | "model": { 2925 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 2926 | }, 2927 | "visible": false, 2928 | "fillColor": "#fff5d8", 2929 | "font": "Arial;13;0", 2930 | "left": 64, 2931 | "top": 296, 2932 | "width": 10, 2933 | "height": 10 2934 | }, 2935 | { 2936 | "_type": "UMLTemplateParameterCompartmentView", 2937 | "_id": "AAAAAAFdCN2+R7gsxQY=", 2938 | "_parent": { 2939 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 2940 | }, 2941 | "model": { 2942 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 2943 | }, 2944 | "visible": false, 2945 | "fillColor": "#fff5d8", 2946 | "font": "Arial;13;0", 2947 | "left": 64, 2948 | "top": 296, 2949 | "width": 10, 2950 | "height": 10 2951 | } 2952 | ], 2953 | "containerView": { 2954 | "$ref": "AAAAAAFdCN4RsbhajAI=" 2955 | }, 2956 | "fillColor": "#fff5d8", 2957 | "font": "Arial;13;0", 2958 | "containerChangeable": true, 2959 | "left": 400, 2960 | "top": 280, 2961 | "width": 137, 2962 | "height": 121, 2963 | "nameCompartment": { 2964 | "$ref": "AAAAAAFdCN2+RLgki6c=" 2965 | }, 2966 | "attributeCompartment": { 2967 | "$ref": "AAAAAAFdCN2+RrgpEWk=" 2968 | }, 2969 | "operationCompartment": { 2970 | "$ref": "AAAAAAFdCN2+RrgqelM=" 2971 | }, 2972 | "receptionCompartment": { 2973 | "$ref": "AAAAAAFdCN2+RrgrTSs=" 2974 | }, 2975 | "templateParameterCompartment": { 2976 | "$ref": "AAAAAAFdCN2+R7gsxQY=" 2977 | } 2978 | }, 2979 | { 2980 | "_type": "UMLAssociationView", 2981 | "_id": "AAAAAAFdCN5uV7h71ko=", 2982 | "_parent": { 2983 | "$ref": "AAAAAAFdCN0kxrffG2M=" 2984 | }, 2985 | "model": { 2986 | "$ref": "AAAAAAFdCN5uVLh3N/Q=" 2987 | }, 2988 | "subViews": [ 2989 | { 2990 | "_type": "EdgeLabelView", 2991 | "_id": "AAAAAAFdCN5uWLh8WPc=", 2992 | "_parent": { 2993 | "$ref": "AAAAAAFdCN5uV7h71ko=" 2994 | }, 2995 | "model": { 2996 | "$ref": "AAAAAAFdCN5uVLh3N/Q=" 2997 | }, 2998 | "visible": false, 2999 | "font": "Arial;13;0", 3000 | "left": 316, 3001 | "top": 315, 3002 | "height": 13, 3003 | "alpha": 1.5707963267948966, 3004 | "distance": 15, 3005 | "hostEdge": { 3006 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3007 | }, 3008 | "edgePosition": 1 3009 | }, 3010 | { 3011 | "_type": "EdgeLabelView", 3012 | "_id": "AAAAAAFdCN5uWLh92R0=", 3013 | "_parent": { 3014 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3015 | }, 3016 | "model": { 3017 | "$ref": "AAAAAAFdCN5uVLh3N/Q=" 3018 | }, 3019 | "visible": null, 3020 | "font": "Arial;13;0", 3021 | "left": 316, 3022 | "top": 300, 3023 | "height": 13, 3024 | "alpha": 1.5707963267948966, 3025 | "distance": 30, 3026 | "hostEdge": { 3027 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3028 | }, 3029 | "edgePosition": 1 3030 | }, 3031 | { 3032 | "_type": "EdgeLabelView", 3033 | "_id": "AAAAAAFdCN5uWLh+hBs=", 3034 | "_parent": { 3035 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3036 | }, 3037 | "model": { 3038 | "$ref": "AAAAAAFdCN5uVLh3N/Q=" 3039 | }, 3040 | "visible": false, 3041 | "font": "Arial;13;0", 3042 | "left": 315, 3043 | "top": 344, 3044 | "height": 13, 3045 | "alpha": -1.5707963267948966, 3046 | "distance": 15, 3047 | "hostEdge": { 3048 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3049 | }, 3050 | "edgePosition": 1 3051 | }, 3052 | { 3053 | "_type": "EdgeLabelView", 3054 | "_id": "AAAAAAFdCN5uWbh/7os=", 3055 | "_parent": { 3056 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3057 | }, 3058 | "model": { 3059 | "$ref": "AAAAAAFdCN5uVbh4b3s=" 3060 | }, 3061 | "visible": false, 3062 | "font": "Arial;13;0", 3063 | "left": 260, 3064 | "top": 313, 3065 | "height": 13, 3066 | "alpha": 0.5235987755982988, 3067 | "distance": 30, 3068 | "hostEdge": { 3069 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3070 | }, 3071 | "edgePosition": 2 3072 | }, 3073 | { 3074 | "_type": "EdgeLabelView", 3075 | "_id": "AAAAAAFdCN5uWbiAMNI=", 3076 | "_parent": { 3077 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3078 | }, 3079 | "model": { 3080 | "$ref": "AAAAAAFdCN5uVbh4b3s=" 3081 | }, 3082 | "visible": false, 3083 | "font": "Arial;13;0", 3084 | "left": 262, 3085 | "top": 300, 3086 | "height": 13, 3087 | "alpha": 0.7853981633974483, 3088 | "distance": 40, 3089 | "hostEdge": { 3090 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3091 | }, 3092 | "edgePosition": 2 3093 | }, 3094 | { 3095 | "_type": "EdgeLabelView", 3096 | "_id": "AAAAAAFdCN5uWbiBKfU=", 3097 | "_parent": { 3098 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3099 | }, 3100 | "model": { 3101 | "$ref": "AAAAAAFdCN5uVbh4b3s=" 3102 | }, 3103 | "visible": false, 3104 | "font": "Arial;13;0", 3105 | "left": 255, 3106 | "top": 341, 3107 | "height": 13, 3108 | "alpha": -0.5235987755982988, 3109 | "distance": 25, 3110 | "hostEdge": { 3111 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3112 | }, 3113 | "edgePosition": 2 3114 | }, 3115 | { 3116 | "_type": "EdgeLabelView", 3117 | "_id": "AAAAAAFdCN5uWbiC/nU=", 3118 | "_parent": { 3119 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3120 | }, 3121 | "model": { 3122 | "$ref": "AAAAAAFdCN5uVbh5PA8=" 3123 | }, 3124 | "visible": false, 3125 | "font": "Arial;13;0", 3126 | "left": 373, 3127 | "top": 316, 3128 | "height": 13, 3129 | "alpha": -0.5235987755982988, 3130 | "distance": 30, 3131 | "hostEdge": { 3132 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3133 | } 3134 | }, 3135 | { 3136 | "_type": "EdgeLabelView", 3137 | "_id": "AAAAAAFdCN5uWbiDXpI=", 3138 | "_parent": { 3139 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3140 | }, 3141 | "model": { 3142 | "$ref": "AAAAAAFdCN5uVbh5PA8=" 3143 | }, 3144 | "visible": false, 3145 | "font": "Arial;13;0", 3146 | "left": 371, 3147 | "top": 303, 3148 | "height": 13, 3149 | "alpha": -0.7853981633974483, 3150 | "distance": 40, 3151 | "hostEdge": { 3152 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3153 | } 3154 | }, 3155 | { 3156 | "_type": "EdgeLabelView", 3157 | "_id": "AAAAAAFdCN5uWbiEck0=", 3158 | "_parent": { 3159 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3160 | }, 3161 | "model": { 3162 | "$ref": "AAAAAAFdCN5uVbh5PA8=" 3163 | }, 3164 | "visible": false, 3165 | "font": "Arial;13;0", 3166 | "left": 377, 3167 | "top": 343, 3168 | "height": 13, 3169 | "alpha": 0.5235987755982988, 3170 | "distance": 25, 3171 | "hostEdge": { 3172 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3173 | } 3174 | }, 3175 | { 3176 | "_type": "UMLQualifierCompartmentView", 3177 | "_id": "AAAAAAFdCN5uWriFirc=", 3178 | "_parent": { 3179 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3180 | }, 3181 | "model": { 3182 | "$ref": "AAAAAAFdCN5uVbh4b3s=" 3183 | }, 3184 | "visible": false, 3185 | "font": "Arial;13;0", 3186 | "width": 10, 3187 | "height": 10 3188 | }, 3189 | { 3190 | "_type": "UMLQualifierCompartmentView", 3191 | "_id": "AAAAAAFdCN5uWriG3mA=", 3192 | "_parent": { 3193 | "$ref": "AAAAAAFdCN5uV7h71ko=" 3194 | }, 3195 | "model": { 3196 | "$ref": "AAAAAAFdCN5uVbh5PA8=" 3197 | }, 3198 | "visible": false, 3199 | "font": "Arial;13;0", 3200 | "width": 10, 3201 | "height": 10 3202 | } 3203 | ], 3204 | "font": "Arial;13;0", 3205 | "head": { 3206 | "$ref": "AAAAAAFdCN2+RLgjNFU=" 3207 | }, 3208 | "tail": { 3209 | "$ref": "AAAAAAFdCN2d4rf5yaA=" 3210 | }, 3211 | "lineStyle": 1, 3212 | "points": "234:334;399:338", 3213 | "showVisibility": true, 3214 | "nameLabel": { 3215 | "$ref": "AAAAAAFdCN5uWLh8WPc=" 3216 | }, 3217 | "stereotypeLabel": { 3218 | "$ref": "AAAAAAFdCN5uWLh92R0=" 3219 | }, 3220 | "propertyLabel": { 3221 | "$ref": "AAAAAAFdCN5uWLh+hBs=" 3222 | }, 3223 | "tailRoleNameLabel": { 3224 | "$ref": "AAAAAAFdCN5uWbh/7os=" 3225 | }, 3226 | "tailPropertyLabel": { 3227 | "$ref": "AAAAAAFdCN5uWbiAMNI=" 3228 | }, 3229 | "tailMultiplicityLabel": { 3230 | "$ref": "AAAAAAFdCN5uWbiBKfU=" 3231 | }, 3232 | "headRoleNameLabel": { 3233 | "$ref": "AAAAAAFdCN5uWbiC/nU=" 3234 | }, 3235 | "headPropertyLabel": { 3236 | "$ref": "AAAAAAFdCN5uWbiDXpI=" 3237 | }, 3238 | "headMultiplicityLabel": { 3239 | "$ref": "AAAAAAFdCN5uWbiEck0=" 3240 | }, 3241 | "tailQualifiersCompartment": { 3242 | "$ref": "AAAAAAFdCN5uWriFirc=" 3243 | }, 3244 | "headQualifiersCompartment": { 3245 | "$ref": "AAAAAAFdCN5uWriG3mA=" 3246 | } 3247 | } 3248 | ] 3249 | }, 3250 | { 3251 | "_type": "UMLClass", 3252 | "_id": "AAAAAAFdCN2d4rf3cik=", 3253 | "_parent": { 3254 | "$ref": "AAAAAAFdCNzRcLfSdZY=" 3255 | }, 3256 | "name": "Class1", 3257 | "ownedElements": [ 3258 | { 3259 | "_type": "UMLAssociation", 3260 | "_id": "AAAAAAFdCN5uVLh3N/Q=", 3261 | "_parent": { 3262 | "$ref": "AAAAAAFdCN2d4rf3cik=" 3263 | }, 3264 | "end1": { 3265 | "_type": "UMLAssociationEnd", 3266 | "_id": "AAAAAAFdCN5uVbh4b3s=", 3267 | "_parent": { 3268 | "$ref": "AAAAAAFdCN5uVLh3N/Q=" 3269 | }, 3270 | "reference": { 3271 | "$ref": "AAAAAAFdCN2d4rf3cik=" 3272 | } 3273 | }, 3274 | "end2": { 3275 | "_type": "UMLAssociationEnd", 3276 | "_id": "AAAAAAFdCN5uVbh5PA8=", 3277 | "_parent": { 3278 | "$ref": "AAAAAAFdCN5uVLh3N/Q=" 3279 | }, 3280 | "reference": { 3281 | "$ref": "AAAAAAFdCN2+Q7gh3C8=" 3282 | } 3283 | } 3284 | } 3285 | ] 3286 | }, 3287 | { 3288 | "_type": "UMLPackage", 3289 | "_id": "AAAAAAFdCN4RsbhYfIg=", 3290 | "_parent": { 3291 | "$ref": "AAAAAAFdCNzRcLfSdZY=" 3292 | }, 3293 | "name": "Util", 3294 | "ownedElements": [ 3295 | { 3296 | "_type": "UMLClass", 3297 | "_id": "AAAAAAFdCN2+Q7gh3C8=", 3298 | "_parent": { 3299 | "$ref": "AAAAAAFdCN4RsbhYfIg=" 3300 | }, 3301 | "name": "Class2" 3302 | } 3303 | ] 3304 | } 3305 | ] 3306 | }, 3307 | { 3308 | "_type": "UMLModel", 3309 | "_id": "AAAAAAFX1k2q5PMI8pk=", 3310 | "_parent": { 3311 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 3312 | }, 3313 | "name": "Package", 3314 | "ownedElements": [ 3315 | { 3316 | "_type": "UMLClassDiagram", 3317 | "_id": "AAAAAAFX1k3ElvMMVUE=", 3318 | "_parent": { 3319 | "$ref": "AAAAAAFX1k2q5PMI8pk=" 3320 | }, 3321 | "name": "Class Diagram", 3322 | "ownedViews": [ 3323 | { 3324 | "_type": "UMLPackageView", 3325 | "_id": "AAAAAAFX5dd3Cg1A6OM=", 3326 | "_parent": { 3327 | "$ref": "AAAAAAFX1k3ElvMMVUE=" 3328 | }, 3329 | "model": { 3330 | "$ref": "AAAAAAFX5dd3CQ0+JAs=" 3331 | }, 3332 | "subViews": [ 3333 | { 3334 | "_type": "UMLNameCompartmentView", 3335 | "_id": "AAAAAAFX5dd3Cw1BMhU=", 3336 | "_parent": { 3337 | "$ref": "AAAAAAFX5dd3Cg1A6OM=" 3338 | }, 3339 | "model": { 3340 | "$ref": "AAAAAAFX5dd3CQ0+JAs=" 3341 | }, 3342 | "subViews": [ 3343 | { 3344 | "_type": "LabelView", 3345 | "_id": "AAAAAAFX5dd3Cw1CfyU=", 3346 | "_parent": { 3347 | "$ref": "AAAAAAFX5dd3Cw1BMhU=" 3348 | }, 3349 | "visible": false, 3350 | "fillColor": "#fff5d8", 3351 | "font": "Arial;13;0", 3352 | "left": 48, 3353 | "top": -128, 3354 | "height": 13 3355 | }, 3356 | { 3357 | "_type": "LabelView", 3358 | "_id": "AAAAAAFX5dd3Cw1DVgM=", 3359 | "_parent": { 3360 | "$ref": "AAAAAAFX5dd3Cw1BMhU=" 3361 | }, 3362 | "fillColor": "#fff5d8", 3363 | "font": "Arial;13;1", 3364 | "left": 133, 3365 | "top": 142, 3366 | "width": 263, 3367 | "height": 13, 3368 | "text": "Geometry" 3369 | }, 3370 | { 3371 | "_type": "LabelView", 3372 | "_id": "AAAAAAFX5dd3Cw1EZ50=", 3373 | "_parent": { 3374 | "$ref": "AAAAAAFX5dd3Cw1BMhU=" 3375 | }, 3376 | "visible": false, 3377 | "fillColor": "#fff5d8", 3378 | "font": "Arial;13;0", 3379 | "left": 48, 3380 | "top": -128, 3381 | "width": 88.86083984375, 3382 | "height": 13, 3383 | "text": "(from Package)" 3384 | }, 3385 | { 3386 | "_type": "LabelView", 3387 | "_id": "AAAAAAFX5dd3DA1Fz1c=", 3388 | "_parent": { 3389 | "$ref": "AAAAAAFX5dd3Cw1BMhU=" 3390 | }, 3391 | "visible": false, 3392 | "fillColor": "#fff5d8", 3393 | "font": "Arial;13;0", 3394 | "left": 48, 3395 | "top": -128, 3396 | "height": 13, 3397 | "horizontalAlignment": 1 3398 | } 3399 | ], 3400 | "fillColor": "#fff5d8", 3401 | "font": "Arial;13;0", 3402 | "left": 128, 3403 | "top": 135, 3404 | "width": 273, 3405 | "height": 25, 3406 | "stereotypeLabel": { 3407 | "$ref": "AAAAAAFX5dd3Cw1CfyU=" 3408 | }, 3409 | "nameLabel": { 3410 | "$ref": "AAAAAAFX5dd3Cw1DVgM=" 3411 | }, 3412 | "namespaceLabel": { 3413 | "$ref": "AAAAAAFX5dd3Cw1EZ50=" 3414 | }, 3415 | "propertyLabel": { 3416 | "$ref": "AAAAAAFX5dd3DA1Fz1c=" 3417 | } 3418 | } 3419 | ], 3420 | "containedViews": [ 3421 | { 3422 | "$ref": "AAAAAAFX5ddKaQzsyjk=" 3423 | }, 3424 | { 3425 | "$ref": "AAAAAAFX5ddYtg0WFuo=" 3426 | } 3427 | ], 3428 | "fillColor": "#fff5d8", 3429 | "font": "Arial;13;0", 3430 | "containerChangeable": true, 3431 | "left": 128, 3432 | "top": 120, 3433 | "width": 273, 3434 | "height": 177, 3435 | "nameCompartment": { 3436 | "$ref": "AAAAAAFX5dd3Cw1BMhU=" 3437 | } 3438 | }, 3439 | { 3440 | "_type": "UMLClassView", 3441 | "_id": "AAAAAAFX5ddKaQzsyjk=", 3442 | "_parent": { 3443 | "$ref": "AAAAAAFX1k3ElvMMVUE=" 3444 | }, 3445 | "model": { 3446 | "$ref": "AAAAAAFX5ddKZwzqTPQ=" 3447 | }, 3448 | "subViews": [ 3449 | { 3450 | "_type": "UMLNameCompartmentView", 3451 | "_id": "AAAAAAFX5ddKagztLnA=", 3452 | "_parent": { 3453 | "$ref": "AAAAAAFX5ddKaQzsyjk=" 3454 | }, 3455 | "model": { 3456 | "$ref": "AAAAAAFX5ddKZwzqTPQ=" 3457 | }, 3458 | "subViews": [ 3459 | { 3460 | "_type": "LabelView", 3461 | "_id": "AAAAAAFX5ddKagzuCrI=", 3462 | "_parent": { 3463 | "$ref": "AAAAAAFX5ddKagztLnA=" 3464 | }, 3465 | "visible": false, 3466 | "fillColor": "#fff5d8", 3467 | "font": "Arial;13;0", 3468 | "left": -176, 3469 | "top": 96, 3470 | "height": 13 3471 | }, 3472 | { 3473 | "_type": "LabelView", 3474 | "_id": "AAAAAAFX5ddKawzvkGk=", 3475 | "_parent": { 3476 | "$ref": "AAAAAAFX5ddKagztLnA=" 3477 | }, 3478 | "fillColor": "#fff5d8", 3479 | "font": "Arial;13;1", 3480 | "left": 157, 3481 | "top": 191, 3482 | "width": 79, 3483 | "height": 13, 3484 | "text": "Circle" 3485 | }, 3486 | { 3487 | "_type": "LabelView", 3488 | "_id": "AAAAAAFX5ddKawzwR+s=", 3489 | "_parent": { 3490 | "$ref": "AAAAAAFX5ddKagztLnA=" 3491 | }, 3492 | "visible": false, 3493 | "fillColor": "#fff5d8", 3494 | "font": "Arial;13;0", 3495 | "left": -176, 3496 | "top": 96, 3497 | "width": 95.341796875, 3498 | "height": 13, 3499 | "text": "(from Geometry)" 3500 | }, 3501 | { 3502 | "_type": "LabelView", 3503 | "_id": "AAAAAAFX5ddKawzxQ3o=", 3504 | "_parent": { 3505 | "$ref": "AAAAAAFX5ddKagztLnA=" 3506 | }, 3507 | "visible": false, 3508 | "fillColor": "#fff5d8", 3509 | "font": "Arial;13;0", 3510 | "left": -176, 3511 | "top": 96, 3512 | "height": 13, 3513 | "horizontalAlignment": 1 3514 | } 3515 | ], 3516 | "fillColor": "#fff5d8", 3517 | "font": "Arial;13;0", 3518 | "left": 152, 3519 | "top": 184, 3520 | "width": 89, 3521 | "height": 25, 3522 | "stereotypeLabel": { 3523 | "$ref": "AAAAAAFX5ddKagzuCrI=" 3524 | }, 3525 | "nameLabel": { 3526 | "$ref": "AAAAAAFX5ddKawzvkGk=" 3527 | }, 3528 | "namespaceLabel": { 3529 | "$ref": "AAAAAAFX5ddKawzwR+s=" 3530 | }, 3531 | "propertyLabel": { 3532 | "$ref": "AAAAAAFX5ddKawzxQ3o=" 3533 | } 3534 | }, 3535 | { 3536 | "_type": "UMLAttributeCompartmentView", 3537 | "_id": "AAAAAAFX5ddKawzyL54=", 3538 | "_parent": { 3539 | "$ref": "AAAAAAFX5ddKaQzsyjk=" 3540 | }, 3541 | "model": { 3542 | "$ref": "AAAAAAFX5ddKZwzqTPQ=" 3543 | }, 3544 | "fillColor": "#fff5d8", 3545 | "font": "Arial;13;0", 3546 | "left": 152, 3547 | "top": 209, 3548 | "width": 89, 3549 | "height": 10 3550 | }, 3551 | { 3552 | "_type": "UMLOperationCompartmentView", 3553 | "_id": "AAAAAAFX5ddKawzzPTs=", 3554 | "_parent": { 3555 | "$ref": "AAAAAAFX5ddKaQzsyjk=" 3556 | }, 3557 | "model": { 3558 | "$ref": "AAAAAAFX5ddKZwzqTPQ=" 3559 | }, 3560 | "fillColor": "#fff5d8", 3561 | "font": "Arial;13;0", 3562 | "left": 152, 3563 | "top": 219, 3564 | "width": 89, 3565 | "height": 10 3566 | }, 3567 | { 3568 | "_type": "UMLReceptionCompartmentView", 3569 | "_id": "AAAAAAFX5ddKawz0i8o=", 3570 | "_parent": { 3571 | "$ref": "AAAAAAFX5ddKaQzsyjk=" 3572 | }, 3573 | "model": { 3574 | "$ref": "AAAAAAFX5ddKZwzqTPQ=" 3575 | }, 3576 | "visible": false, 3577 | "fillColor": "#fff5d8", 3578 | "font": "Arial;13;0", 3579 | "left": -104, 3580 | "top": 128, 3581 | "width": 10, 3582 | "height": 10 3583 | }, 3584 | { 3585 | "_type": "UMLTemplateParameterCompartmentView", 3586 | "_id": "AAAAAAFX5ddKbAz1NWY=", 3587 | "_parent": { 3588 | "$ref": "AAAAAAFX5ddKaQzsyjk=" 3589 | }, 3590 | "model": { 3591 | "$ref": "AAAAAAFX5ddKZwzqTPQ=" 3592 | }, 3593 | "visible": false, 3594 | "fillColor": "#fff5d8", 3595 | "font": "Arial;13;0", 3596 | "left": -104, 3597 | "top": 128, 3598 | "width": 10, 3599 | "height": 10 3600 | } 3601 | ], 3602 | "containerView": { 3603 | "$ref": "AAAAAAFX5dd3Cg1A6OM=" 3604 | }, 3605 | "fillColor": "#fff5d8", 3606 | "font": "Arial;13;0", 3607 | "containerChangeable": true, 3608 | "left": 152, 3609 | "top": 184, 3610 | "width": 89, 3611 | "height": 81, 3612 | "nameCompartment": { 3613 | "$ref": "AAAAAAFX5ddKagztLnA=" 3614 | }, 3615 | "attributeCompartment": { 3616 | "$ref": "AAAAAAFX5ddKawzyL54=" 3617 | }, 3618 | "operationCompartment": { 3619 | "$ref": "AAAAAAFX5ddKawzzPTs=" 3620 | }, 3621 | "receptionCompartment": { 3622 | "$ref": "AAAAAAFX5ddKawz0i8o=" 3623 | }, 3624 | "templateParameterCompartment": { 3625 | "$ref": "AAAAAAFX5ddKbAz1NWY=" 3626 | } 3627 | }, 3628 | { 3629 | "_type": "UMLClassView", 3630 | "_id": "AAAAAAFX5ddYtg0WFuo=", 3631 | "_parent": { 3632 | "$ref": "AAAAAAFX1k3ElvMMVUE=" 3633 | }, 3634 | "model": { 3635 | "$ref": "AAAAAAFX5ddYtg0Uecw=" 3636 | }, 3637 | "subViews": [ 3638 | { 3639 | "_type": "UMLNameCompartmentView", 3640 | "_id": "AAAAAAFX5ddYtg0Xxo4=", 3641 | "_parent": { 3642 | "$ref": "AAAAAAFX5ddYtg0WFuo=" 3643 | }, 3644 | "model": { 3645 | "$ref": "AAAAAAFX5ddYtg0Uecw=" 3646 | }, 3647 | "subViews": [ 3648 | { 3649 | "_type": "LabelView", 3650 | "_id": "AAAAAAFX5ddYtg0YwII=", 3651 | "_parent": { 3652 | "$ref": "AAAAAAFX5ddYtg0Xxo4=" 3653 | }, 3654 | "visible": false, 3655 | "fillColor": "#fff5d8", 3656 | "font": "Arial;13;0", 3657 | "left": -144, 3658 | "top": 112, 3659 | "height": 13 3660 | }, 3661 | { 3662 | "_type": "LabelView", 3663 | "_id": "AAAAAAFX5ddYtw0ZC44=", 3664 | "_parent": { 3665 | "$ref": "AAAAAAFX5ddYtg0Xxo4=" 3666 | }, 3667 | "fillColor": "#fff5d8", 3668 | "font": "Arial;13;1", 3669 | "left": 269, 3670 | "top": 191, 3671 | "width": 79, 3672 | "height": 13, 3673 | "text": "Square" 3674 | }, 3675 | { 3676 | "_type": "LabelView", 3677 | "_id": "AAAAAAFX5ddYtw0ae5I=", 3678 | "_parent": { 3679 | "$ref": "AAAAAAFX5ddYtg0Xxo4=" 3680 | }, 3681 | "visible": false, 3682 | "fillColor": "#fff5d8", 3683 | "font": "Arial;13;0", 3684 | "left": -144, 3685 | "top": 112, 3686 | "width": 95.341796875, 3687 | "height": 13, 3688 | "text": "(from Geometry)" 3689 | }, 3690 | { 3691 | "_type": "LabelView", 3692 | "_id": "AAAAAAFX5ddYtw0bzCw=", 3693 | "_parent": { 3694 | "$ref": "AAAAAAFX5ddYtg0Xxo4=" 3695 | }, 3696 | "visible": false, 3697 | "fillColor": "#fff5d8", 3698 | "font": "Arial;13;0", 3699 | "left": -144, 3700 | "top": 112, 3701 | "height": 13, 3702 | "horizontalAlignment": 1 3703 | } 3704 | ], 3705 | "fillColor": "#fff5d8", 3706 | "font": "Arial;13;0", 3707 | "left": 264, 3708 | "top": 184, 3709 | "width": 89, 3710 | "height": 25, 3711 | "stereotypeLabel": { 3712 | "$ref": "AAAAAAFX5ddYtg0YwII=" 3713 | }, 3714 | "nameLabel": { 3715 | "$ref": "AAAAAAFX5ddYtw0ZC44=" 3716 | }, 3717 | "namespaceLabel": { 3718 | "$ref": "AAAAAAFX5ddYtw0ae5I=" 3719 | }, 3720 | "propertyLabel": { 3721 | "$ref": "AAAAAAFX5ddYtw0bzCw=" 3722 | } 3723 | }, 3724 | { 3725 | "_type": "UMLAttributeCompartmentView", 3726 | "_id": "AAAAAAFX5ddYtw0cHP4=", 3727 | "_parent": { 3728 | "$ref": "AAAAAAFX5ddYtg0WFuo=" 3729 | }, 3730 | "model": { 3731 | "$ref": "AAAAAAFX5ddYtg0Uecw=" 3732 | }, 3733 | "fillColor": "#fff5d8", 3734 | "font": "Arial;13;0", 3735 | "left": 264, 3736 | "top": 209, 3737 | "width": 89, 3738 | "height": 10 3739 | }, 3740 | { 3741 | "_type": "UMLOperationCompartmentView", 3742 | "_id": "AAAAAAFX5ddYtw0dKkM=", 3743 | "_parent": { 3744 | "$ref": "AAAAAAFX5ddYtg0WFuo=" 3745 | }, 3746 | "model": { 3747 | "$ref": "AAAAAAFX5ddYtg0Uecw=" 3748 | }, 3749 | "fillColor": "#fff5d8", 3750 | "font": "Arial;13;0", 3751 | "left": 264, 3752 | "top": 219, 3753 | "width": 89, 3754 | "height": 10 3755 | }, 3756 | { 3757 | "_type": "UMLReceptionCompartmentView", 3758 | "_id": "AAAAAAFX5ddYtw0eEbg=", 3759 | "_parent": { 3760 | "$ref": "AAAAAAFX5ddYtg0WFuo=" 3761 | }, 3762 | "model": { 3763 | "$ref": "AAAAAAFX5ddYtg0Uecw=" 3764 | }, 3765 | "visible": false, 3766 | "fillColor": "#fff5d8", 3767 | "font": "Arial;13;0", 3768 | "left": -88, 3769 | "top": 136, 3770 | "width": 10, 3771 | "height": 10 3772 | }, 3773 | { 3774 | "_type": "UMLTemplateParameterCompartmentView", 3775 | "_id": "AAAAAAFX5ddYtw0fO74=", 3776 | "_parent": { 3777 | "$ref": "AAAAAAFX5ddYtg0WFuo=" 3778 | }, 3779 | "model": { 3780 | "$ref": "AAAAAAFX5ddYtg0Uecw=" 3781 | }, 3782 | "visible": false, 3783 | "fillColor": "#fff5d8", 3784 | "font": "Arial;13;0", 3785 | "left": -88, 3786 | "top": 136, 3787 | "width": 10, 3788 | "height": 10 3789 | } 3790 | ], 3791 | "containerView": { 3792 | "$ref": "AAAAAAFX5dd3Cg1A6OM=" 3793 | }, 3794 | "fillColor": "#fff5d8", 3795 | "font": "Arial;13;0", 3796 | "containerChangeable": true, 3797 | "left": 264, 3798 | "top": 184, 3799 | "width": 89, 3800 | "height": 81, 3801 | "nameCompartment": { 3802 | "$ref": "AAAAAAFX5ddYtg0Xxo4=" 3803 | }, 3804 | "attributeCompartment": { 3805 | "$ref": "AAAAAAFX5ddYtw0cHP4=" 3806 | }, 3807 | "operationCompartment": { 3808 | "$ref": "AAAAAAFX5ddYtw0dKkM=" 3809 | }, 3810 | "receptionCompartment": { 3811 | "$ref": "AAAAAAFX5ddYtw0eEbg=" 3812 | }, 3813 | "templateParameterCompartment": { 3814 | "$ref": "AAAAAAFX5ddYtw0fO74=" 3815 | } 3816 | } 3817 | ] 3818 | }, 3819 | { 3820 | "_type": "UMLPackage", 3821 | "_id": "AAAAAAFX5dd3CQ0+JAs=", 3822 | "_parent": { 3823 | "$ref": "AAAAAAFX1k2q5PMI8pk=" 3824 | }, 3825 | "name": "Geometry", 3826 | "ownedElements": [ 3827 | { 3828 | "_type": "UMLClass", 3829 | "_id": "AAAAAAFX5ddKZwzqTPQ=", 3830 | "_parent": { 3831 | "$ref": "AAAAAAFX5dd3CQ0+JAs=" 3832 | }, 3833 | "name": "Circle" 3834 | }, 3835 | { 3836 | "_type": "UMLClass", 3837 | "_id": "AAAAAAFX5ddYtg0Uecw=", 3838 | "_parent": { 3839 | "$ref": "AAAAAAFX5dd3CQ0+JAs=" 3840 | }, 3841 | "name": "Square" 3842 | } 3843 | ] 3844 | } 3845 | ] 3846 | }, 3847 | { 3848 | "_type": "UMLModel", 3849 | "_id": "AAAAAAFX1k3/wfMYshU=", 3850 | "_parent": { 3851 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 3852 | }, 3853 | "name": "Code Comment", 3854 | "ownedElements": [ 3855 | { 3856 | "_type": "UMLClassDiagram", 3857 | "_id": "AAAAAAFX1k4kE/Mcp6g=", 3858 | "_parent": { 3859 | "$ref": "AAAAAAFX1k3/wfMYshU=" 3860 | }, 3861 | "name": "Class Diagram", 3862 | "ownedViews": [ 3863 | { 3864 | "_type": "UMLClassView", 3865 | "_id": "AAAAAAFbsAh8fpWbzmk=", 3866 | "_parent": { 3867 | "$ref": "AAAAAAFX1k4kE/Mcp6g=" 3868 | }, 3869 | "model": { 3870 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 3871 | }, 3872 | "subViews": [ 3873 | { 3874 | "_type": "UMLNameCompartmentView", 3875 | "_id": "AAAAAAFbsAh8f5WcyI0=", 3876 | "_parent": { 3877 | "$ref": "AAAAAAFbsAh8fpWbzmk=" 3878 | }, 3879 | "model": { 3880 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 3881 | }, 3882 | "subViews": [ 3883 | { 3884 | "_type": "LabelView", 3885 | "_id": "AAAAAAFbsAh8f5WddHc=", 3886 | "_parent": { 3887 | "$ref": "AAAAAAFbsAh8f5WcyI0=" 3888 | }, 3889 | "visible": false, 3890 | "fillColor": "#fff5d8", 3891 | "font": "Arial;13;0", 3892 | "height": 13 3893 | }, 3894 | { 3895 | "_type": "LabelView", 3896 | "_id": "AAAAAAFbsAh8f5WeeWg=", 3897 | "_parent": { 3898 | "$ref": "AAAAAAFbsAh8f5WcyI0=" 3899 | }, 3900 | "fillColor": "#fff5d8", 3901 | "font": "Arial;13;1", 3902 | "left": 237, 3903 | "top": 143, 3904 | "width": 111, 3905 | "height": 13, 3906 | "text": "Author" 3907 | }, 3908 | { 3909 | "_type": "LabelView", 3910 | "_id": "AAAAAAFbsAh8gJWfTc8=", 3911 | "_parent": { 3912 | "$ref": "AAAAAAFbsAh8f5WcyI0=" 3913 | }, 3914 | "visible": false, 3915 | "fillColor": "#fff5d8", 3916 | "font": "Arial;13;0", 3917 | "width": 129.30810546875, 3918 | "height": 13, 3919 | "text": "(from Code Comment)" 3920 | }, 3921 | { 3922 | "_type": "LabelView", 3923 | "_id": "AAAAAAFbsAh8gJWgtHI=", 3924 | "_parent": { 3925 | "$ref": "AAAAAAFbsAh8f5WcyI0=" 3926 | }, 3927 | "visible": false, 3928 | "fillColor": "#fff5d8", 3929 | "font": "Arial;13;0", 3930 | "height": 13, 3931 | "horizontalAlignment": 1 3932 | } 3933 | ], 3934 | "fillColor": "#fff5d8", 3935 | "font": "Arial;13;0", 3936 | "left": 232, 3937 | "top": 136, 3938 | "width": 121, 3939 | "height": 25, 3940 | "stereotypeLabel": { 3941 | "$ref": "AAAAAAFbsAh8f5WddHc=" 3942 | }, 3943 | "nameLabel": { 3944 | "$ref": "AAAAAAFbsAh8f5WeeWg=" 3945 | }, 3946 | "namespaceLabel": { 3947 | "$ref": "AAAAAAFbsAh8gJWfTc8=" 3948 | }, 3949 | "propertyLabel": { 3950 | "$ref": "AAAAAAFbsAh8gJWgtHI=" 3951 | } 3952 | }, 3953 | { 3954 | "_type": "UMLAttributeCompartmentView", 3955 | "_id": "AAAAAAFbsAh8gJWhBCQ=", 3956 | "_parent": { 3957 | "$ref": "AAAAAAFbsAh8fpWbzmk=" 3958 | }, 3959 | "model": { 3960 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 3961 | }, 3962 | "subViews": [ 3963 | { 3964 | "_type": "UMLAttributeView", 3965 | "_id": "AAAAAAFbsAiUVJXGpQc=", 3966 | "_parent": { 3967 | "$ref": "AAAAAAFbsAh8gJWhBCQ=" 3968 | }, 3969 | "model": { 3970 | "$ref": "AAAAAAFbsAiUJ5XDBe0=" 3971 | }, 3972 | "fillColor": "#fff5d8", 3973 | "font": "Arial;13;0", 3974 | "left": 237, 3975 | "top": 166, 3976 | "width": 111, 3977 | "height": 13, 3978 | "text": "-name: String", 3979 | "horizontalAlignment": 0 3980 | }, 3981 | { 3982 | "_type": "UMLAttributeView", 3983 | "_id": "AAAAAAFbsAi59ZXOtO0=", 3984 | "_parent": { 3985 | "$ref": "AAAAAAFbsAh8gJWhBCQ=" 3986 | }, 3987 | "model": { 3988 | "$ref": "AAAAAAFbsAi5wZXL2Tg=" 3989 | }, 3990 | "fillColor": "#fff5d8", 3991 | "font": "Arial;13;0", 3992 | "left": 237, 3993 | "top": 181, 3994 | "width": 111, 3995 | "height": 13, 3996 | "text": "-email: String", 3997 | "horizontalAlignment": 0 3998 | } 3999 | ], 4000 | "fillColor": "#fff5d8", 4001 | "font": "Arial;13;0", 4002 | "left": 232, 4003 | "top": 161, 4004 | "width": 121, 4005 | "height": 38 4006 | }, 4007 | { 4008 | "_type": "UMLOperationCompartmentView", 4009 | "_id": "AAAAAAFbsAh8gJWi+6o=", 4010 | "_parent": { 4011 | "$ref": "AAAAAAFbsAh8fpWbzmk=" 4012 | }, 4013 | "model": { 4014 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 4015 | }, 4016 | "fillColor": "#fff5d8", 4017 | "font": "Arial;13;0", 4018 | "left": 232, 4019 | "top": 199, 4020 | "width": 121, 4021 | "height": 10 4022 | }, 4023 | { 4024 | "_type": "UMLReceptionCompartmentView", 4025 | "_id": "AAAAAAFbsAh8gZWjaVo=", 4026 | "_parent": { 4027 | "$ref": "AAAAAAFbsAh8fpWbzmk=" 4028 | }, 4029 | "model": { 4030 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 4031 | }, 4032 | "visible": false, 4033 | "fillColor": "#fff5d8", 4034 | "font": "Arial;13;0", 4035 | "width": 10, 4036 | "height": 10 4037 | }, 4038 | { 4039 | "_type": "UMLTemplateParameterCompartmentView", 4040 | "_id": "AAAAAAFbsAh8gZWk/0w=", 4041 | "_parent": { 4042 | "$ref": "AAAAAAFbsAh8fpWbzmk=" 4043 | }, 4044 | "model": { 4045 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 4046 | }, 4047 | "visible": false, 4048 | "fillColor": "#fff5d8", 4049 | "font": "Arial;13;0", 4050 | "width": 10, 4051 | "height": 10 4052 | } 4053 | ], 4054 | "fillColor": "#fff5d8", 4055 | "font": "Arial;13;0", 4056 | "containerChangeable": true, 4057 | "left": 232, 4058 | "top": 136, 4059 | "width": 121, 4060 | "height": 113, 4061 | "nameCompartment": { 4062 | "$ref": "AAAAAAFbsAh8f5WcyI0=" 4063 | }, 4064 | "attributeCompartment": { 4065 | "$ref": "AAAAAAFbsAh8gJWhBCQ=" 4066 | }, 4067 | "operationCompartment": { 4068 | "$ref": "AAAAAAFbsAh8gJWi+6o=" 4069 | }, 4070 | "receptionCompartment": { 4071 | "$ref": "AAAAAAFbsAh8gZWjaVo=" 4072 | }, 4073 | "templateParameterCompartment": { 4074 | "$ref": "AAAAAAFbsAh8gZWk/0w=" 4075 | } 4076 | } 4077 | ] 4078 | }, 4079 | { 4080 | "_type": "UMLClass", 4081 | "_id": "AAAAAAFbsAh8fJWZTqo=", 4082 | "_parent": { 4083 | "$ref": "AAAAAAFX1k3/wfMYshU=" 4084 | }, 4085 | "name": "Author", 4086 | "documentation": "This is \"Author\" class", 4087 | "attributes": [ 4088 | { 4089 | "_type": "UMLAttribute", 4090 | "_id": "AAAAAAFbsAiUJ5XDBe0=", 4091 | "_parent": { 4092 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 4093 | }, 4094 | "name": "name", 4095 | "visibility": "private", 4096 | "type": "String" 4097 | }, 4098 | { 4099 | "_type": "UMLAttribute", 4100 | "_id": "AAAAAAFbsAi5wZXL2Tg=", 4101 | "_parent": { 4102 | "$ref": "AAAAAAFbsAh8fJWZTqo=" 4103 | }, 4104 | "name": "email", 4105 | "visibility": "private", 4106 | "type": "String" 4107 | } 4108 | ] 4109 | } 4110 | ] 4111 | }, 4112 | { 4113 | "_type": "UMLModel", 4114 | "_id": "AAAAAAFX1k5BrPMocdE=", 4115 | "_parent": { 4116 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 4117 | }, 4118 | "name": "Class Constants", 4119 | "ownedElements": [ 4120 | { 4121 | "_type": "UMLClassDiagram", 4122 | "_id": "AAAAAAFX1k5sxvMs5UI=", 4123 | "_parent": { 4124 | "$ref": "AAAAAAFX1k5BrPMocdE=" 4125 | }, 4126 | "name": "Class Diagram", 4127 | "ownedViews": [ 4128 | { 4129 | "_type": "UMLClassView", 4130 | "_id": "AAAAAAFbsAte3pXdPUs=", 4131 | "_parent": { 4132 | "$ref": "AAAAAAFX1k5sxvMs5UI=" 4133 | }, 4134 | "model": { 4135 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4136 | }, 4137 | "subViews": [ 4138 | { 4139 | "_type": "UMLNameCompartmentView", 4140 | "_id": "AAAAAAFbsAte35XeyMk=", 4141 | "_parent": { 4142 | "$ref": "AAAAAAFbsAte3pXdPUs=" 4143 | }, 4144 | "model": { 4145 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4146 | }, 4147 | "subViews": [ 4148 | { 4149 | "_type": "LabelView", 4150 | "_id": "AAAAAAFbsAte35XfTiA=", 4151 | "_parent": { 4152 | "$ref": "AAAAAAFbsAte35XeyMk=" 4153 | }, 4154 | "visible": false, 4155 | "fillColor": "#fff5d8", 4156 | "font": "Arial;13;0", 4157 | "height": 13 4158 | }, 4159 | { 4160 | "_type": "LabelView", 4161 | "_id": "AAAAAAFbsAte4JXgVJo=", 4162 | "_parent": { 4163 | "$ref": "AAAAAAFbsAte35XeyMk=" 4164 | }, 4165 | "fillColor": "#fff5d8", 4166 | "font": "Arial;13;1", 4167 | "left": 261, 4168 | "top": 191, 4169 | "width": 183, 4170 | "height": 13, 4171 | "text": "Circle" 4172 | }, 4173 | { 4174 | "_type": "LabelView", 4175 | "_id": "AAAAAAFbsAte4JXhsic=", 4176 | "_parent": { 4177 | "$ref": "AAAAAAFbsAte35XeyMk=" 4178 | }, 4179 | "visible": false, 4180 | "fillColor": "#fff5d8", 4181 | "font": "Arial;13;0", 4182 | "width": 133, 4183 | "height": 13, 4184 | "text": "(from Class Constants)" 4185 | }, 4186 | { 4187 | "_type": "LabelView", 4188 | "_id": "AAAAAAFbsAte4JXiof0=", 4189 | "_parent": { 4190 | "$ref": "AAAAAAFbsAte35XeyMk=" 4191 | }, 4192 | "visible": false, 4193 | "fillColor": "#fff5d8", 4194 | "font": "Arial;13;0", 4195 | "height": 13, 4196 | "horizontalAlignment": 1 4197 | } 4198 | ], 4199 | "fillColor": "#fff5d8", 4200 | "font": "Arial;13;0", 4201 | "left": 256, 4202 | "top": 184, 4203 | "width": 193, 4204 | "height": 25, 4205 | "stereotypeLabel": { 4206 | "$ref": "AAAAAAFbsAte35XfTiA=" 4207 | }, 4208 | "nameLabel": { 4209 | "$ref": "AAAAAAFbsAte4JXgVJo=" 4210 | }, 4211 | "namespaceLabel": { 4212 | "$ref": "AAAAAAFbsAte4JXhsic=" 4213 | }, 4214 | "propertyLabel": { 4215 | "$ref": "AAAAAAFbsAte4JXiof0=" 4216 | } 4217 | }, 4218 | { 4219 | "_type": "UMLAttributeCompartmentView", 4220 | "_id": "AAAAAAFbsAte4JXjwKI=", 4221 | "_parent": { 4222 | "$ref": "AAAAAAFbsAte3pXdPUs=" 4223 | }, 4224 | "model": { 4225 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4226 | }, 4227 | "subViews": [ 4228 | { 4229 | "_type": "UMLAttributeView", 4230 | "_id": "AAAAAAFbsAt2xpYI9BM=", 4231 | "_parent": { 4232 | "$ref": "AAAAAAFbsAte4JXjwKI=" 4233 | }, 4234 | "model": { 4235 | "$ref": "AAAAAAFbsAt2eZYFY0k=" 4236 | }, 4237 | "fillColor": "#fff5d8", 4238 | "font": "Arial;13;0", 4239 | "left": 261, 4240 | "top": 214, 4241 | "width": 183, 4242 | "height": 13, 4243 | "underline": true, 4244 | "text": "+PI: Float = 3.14159 {readOnly}", 4245 | "horizontalAlignment": 0 4246 | } 4247 | ], 4248 | "fillColor": "#fff5d8", 4249 | "font": "Arial;13;0", 4250 | "left": 256, 4251 | "top": 209, 4252 | "width": 193, 4253 | "height": 23 4254 | }, 4255 | { 4256 | "_type": "UMLOperationCompartmentView", 4257 | "_id": "AAAAAAFbsAte4ZXkcJI=", 4258 | "_parent": { 4259 | "$ref": "AAAAAAFbsAte3pXdPUs=" 4260 | }, 4261 | "model": { 4262 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4263 | }, 4264 | "fillColor": "#fff5d8", 4265 | "font": "Arial;13;0", 4266 | "left": 256, 4267 | "top": 232, 4268 | "width": 193, 4269 | "height": 10 4270 | }, 4271 | { 4272 | "_type": "UMLReceptionCompartmentView", 4273 | "_id": "AAAAAAFbsAte4ZXlniA=", 4274 | "_parent": { 4275 | "$ref": "AAAAAAFbsAte3pXdPUs=" 4276 | }, 4277 | "model": { 4278 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4279 | }, 4280 | "visible": false, 4281 | "fillColor": "#fff5d8", 4282 | "font": "Arial;13;0", 4283 | "width": 10, 4284 | "height": 10 4285 | }, 4286 | { 4287 | "_type": "UMLTemplateParameterCompartmentView", 4288 | "_id": "AAAAAAFbsAte4ZXmk18=", 4289 | "_parent": { 4290 | "$ref": "AAAAAAFbsAte3pXdPUs=" 4291 | }, 4292 | "model": { 4293 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4294 | }, 4295 | "visible": false, 4296 | "fillColor": "#fff5d8", 4297 | "font": "Arial;13;0", 4298 | "width": 10, 4299 | "height": 10 4300 | } 4301 | ], 4302 | "fillColor": "#fff5d8", 4303 | "font": "Arial;13;0", 4304 | "containerChangeable": true, 4305 | "left": 256, 4306 | "top": 184, 4307 | "width": 193, 4308 | "height": 58, 4309 | "nameCompartment": { 4310 | "$ref": "AAAAAAFbsAte35XeyMk=" 4311 | }, 4312 | "attributeCompartment": { 4313 | "$ref": "AAAAAAFbsAte4JXjwKI=" 4314 | }, 4315 | "operationCompartment": { 4316 | "$ref": "AAAAAAFbsAte4ZXkcJI=" 4317 | }, 4318 | "receptionCompartment": { 4319 | "$ref": "AAAAAAFbsAte4ZXlniA=" 4320 | }, 4321 | "templateParameterCompartment": { 4322 | "$ref": "AAAAAAFbsAte4ZXmk18=" 4323 | } 4324 | } 4325 | ] 4326 | }, 4327 | { 4328 | "_type": "UMLClass", 4329 | "_id": "AAAAAAFbsAte3ZXbJqw=", 4330 | "_parent": { 4331 | "$ref": "AAAAAAFX1k5BrPMocdE=" 4332 | }, 4333 | "name": "Circle", 4334 | "attributes": [ 4335 | { 4336 | "_type": "UMLAttribute", 4337 | "_id": "AAAAAAFbsAt2eZYFY0k=", 4338 | "_parent": { 4339 | "$ref": "AAAAAAFbsAte3ZXbJqw=" 4340 | }, 4341 | "name": "PI", 4342 | "isStatic": true, 4343 | "type": "Float", 4344 | "isReadOnly": true, 4345 | "defaultValue": "3.14159" 4346 | } 4347 | ] 4348 | } 4349 | ] 4350 | }, 4351 | { 4352 | "_type": "UMLModel", 4353 | "_id": "AAAAAAFbsBJM5ZYSUy0=", 4354 | "_parent": { 4355 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 4356 | }, 4357 | "name": "Class Variables", 4358 | "ownedElements": [ 4359 | { 4360 | "_type": "UMLClassDiagram", 4361 | "_id": "AAAAAAFbsBLa1ZYWA60=", 4362 | "_parent": { 4363 | "$ref": "AAAAAAFbsBJM5ZYSUy0=" 4364 | }, 4365 | "name": "Class Diagram", 4366 | "ownedViews": [ 4367 | { 4368 | "_type": "UMLClassView", 4369 | "_id": "AAAAAAFbsBQsLZYfCfM=", 4370 | "_parent": { 4371 | "$ref": "AAAAAAFbsBLa1ZYWA60=" 4372 | }, 4373 | "model": { 4374 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4375 | }, 4376 | "subViews": [ 4377 | { 4378 | "_type": "UMLNameCompartmentView", 4379 | "_id": "AAAAAAFbsBQsLZYgwNg=", 4380 | "_parent": { 4381 | "$ref": "AAAAAAFbsBQsLZYfCfM=" 4382 | }, 4383 | "model": { 4384 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4385 | }, 4386 | "subViews": [ 4387 | { 4388 | "_type": "LabelView", 4389 | "_id": "AAAAAAFbsBQsLpYhii4=", 4390 | "_parent": { 4391 | "$ref": "AAAAAAFbsBQsLZYgwNg=" 4392 | }, 4393 | "visible": false, 4394 | "fillColor": "#fff5d8", 4395 | "font": "Arial;13;0", 4396 | "height": 13 4397 | }, 4398 | { 4399 | "_type": "LabelView", 4400 | "_id": "AAAAAAFbsBQsLpYi2V8=", 4401 | "_parent": { 4402 | "$ref": "AAAAAAFbsBQsLZYgwNg=" 4403 | }, 4404 | "fillColor": "#fff5d8", 4405 | "font": "Arial;13;1", 4406 | "left": 309, 4407 | "top": 247, 4408 | "width": 84, 4409 | "height": 13, 4410 | "text": "Song" 4411 | }, 4412 | { 4413 | "_type": "LabelView", 4414 | "_id": "AAAAAAFbsBQsLpYj5v8=", 4415 | "_parent": { 4416 | "$ref": "AAAAAAFbsBQsLZYgwNg=" 4417 | }, 4418 | "visible": false, 4419 | "fillColor": "#fff5d8", 4420 | "font": "Arial;13;0", 4421 | "width": 128, 4422 | "height": 13, 4423 | "text": "(from Class Variables)" 4424 | }, 4425 | { 4426 | "_type": "LabelView", 4427 | "_id": "AAAAAAFbsBQsLpYk1D8=", 4428 | "_parent": { 4429 | "$ref": "AAAAAAFbsBQsLZYgwNg=" 4430 | }, 4431 | "visible": false, 4432 | "fillColor": "#fff5d8", 4433 | "font": "Arial;13;0", 4434 | "height": 13, 4435 | "horizontalAlignment": 1 4436 | } 4437 | ], 4438 | "fillColor": "#fff5d8", 4439 | "font": "Arial;13;0", 4440 | "left": 304, 4441 | "top": 240, 4442 | "width": 94, 4443 | "height": 25, 4444 | "stereotypeLabel": { 4445 | "$ref": "AAAAAAFbsBQsLpYhii4=" 4446 | }, 4447 | "nameLabel": { 4448 | "$ref": "AAAAAAFbsBQsLpYi2V8=" 4449 | }, 4450 | "namespaceLabel": { 4451 | "$ref": "AAAAAAFbsBQsLpYj5v8=" 4452 | }, 4453 | "propertyLabel": { 4454 | "$ref": "AAAAAAFbsBQsLpYk1D8=" 4455 | } 4456 | }, 4457 | { 4458 | "_type": "UMLAttributeCompartmentView", 4459 | "_id": "AAAAAAFbsBQsLpYlQZc=", 4460 | "_parent": { 4461 | "$ref": "AAAAAAFbsBQsLZYfCfM=" 4462 | }, 4463 | "model": { 4464 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4465 | }, 4466 | "subViews": [ 4467 | { 4468 | "_type": "UMLAttributeView", 4469 | "_id": "AAAAAAFbsBU7nZZKQco=", 4470 | "_parent": { 4471 | "$ref": "AAAAAAFbsBQsLpYlQZc=" 4472 | }, 4473 | "model": { 4474 | "$ref": "AAAAAAFbsBU7LpZHw9M=" 4475 | }, 4476 | "fillColor": "#fff5d8", 4477 | "font": "Arial;13;0", 4478 | "left": 309, 4479 | "top": 270, 4480 | "width": 84, 4481 | "height": 13, 4482 | "text": "-name: String", 4483 | "horizontalAlignment": 0 4484 | }, 4485 | { 4486 | "_type": "UMLAttributeView", 4487 | "_id": "AAAAAAFbsBVNEpZR2og=", 4488 | "_parent": { 4489 | "$ref": "AAAAAAFbsBQsLpYlQZc=" 4490 | }, 4491 | "model": { 4492 | "$ref": "AAAAAAFbsBVMqpZOZjM=" 4493 | }, 4494 | "fillColor": "#fff5d8", 4495 | "font": "Arial;13;0", 4496 | "left": 309, 4497 | "top": 285, 4498 | "width": 84, 4499 | "height": 13, 4500 | "text": "-artist: String", 4501 | "horizontalAlignment": 0 4502 | }, 4503 | { 4504 | "_type": "UMLAttributeView", 4505 | "_id": "AAAAAAFbsBVzyJZYmLw=", 4506 | "_parent": { 4507 | "$ref": "AAAAAAFbsBQsLpYlQZc=" 4508 | }, 4509 | "model": { 4510 | "$ref": "AAAAAAFbsBVzY5ZVLPc=" 4511 | }, 4512 | "fillColor": "#fff5d8", 4513 | "font": "Arial;13;0", 4514 | "left": 309, 4515 | "top": 300, 4516 | "width": 84, 4517 | "height": 13, 4518 | "underline": true, 4519 | "text": "+plays: int = 0", 4520 | "horizontalAlignment": 0 4521 | } 4522 | ], 4523 | "fillColor": "#fff5d8", 4524 | "font": "Arial;13;0", 4525 | "left": 304, 4526 | "top": 265, 4527 | "width": 94, 4528 | "height": 53 4529 | }, 4530 | { 4531 | "_type": "UMLOperationCompartmentView", 4532 | "_id": "AAAAAAFbsBQsL5YmOX0=", 4533 | "_parent": { 4534 | "$ref": "AAAAAAFbsBQsLZYfCfM=" 4535 | }, 4536 | "model": { 4537 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4538 | }, 4539 | "fillColor": "#fff5d8", 4540 | "font": "Arial;13;0", 4541 | "left": 304, 4542 | "top": 318, 4543 | "width": 94, 4544 | "height": 10 4545 | }, 4546 | { 4547 | "_type": "UMLReceptionCompartmentView", 4548 | "_id": "AAAAAAFbsBQsL5Yn9uQ=", 4549 | "_parent": { 4550 | "$ref": "AAAAAAFbsBQsLZYfCfM=" 4551 | }, 4552 | "model": { 4553 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4554 | }, 4555 | "visible": false, 4556 | "fillColor": "#fff5d8", 4557 | "font": "Arial;13;0", 4558 | "width": 10, 4559 | "height": 10 4560 | }, 4561 | { 4562 | "_type": "UMLTemplateParameterCompartmentView", 4563 | "_id": "AAAAAAFbsBQsMJYoKkU=", 4564 | "_parent": { 4565 | "$ref": "AAAAAAFbsBQsLZYfCfM=" 4566 | }, 4567 | "model": { 4568 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4569 | }, 4570 | "visible": false, 4571 | "fillColor": "#fff5d8", 4572 | "font": "Arial;13;0", 4573 | "width": 10, 4574 | "height": 10 4575 | } 4576 | ], 4577 | "fillColor": "#fff5d8", 4578 | "font": "Arial;13;0", 4579 | "containerChangeable": true, 4580 | "left": 304, 4581 | "top": 240, 4582 | "width": 94, 4583 | "height": 121, 4584 | "nameCompartment": { 4585 | "$ref": "AAAAAAFbsBQsLZYgwNg=" 4586 | }, 4587 | "attributeCompartment": { 4588 | "$ref": "AAAAAAFbsBQsLpYlQZc=" 4589 | }, 4590 | "operationCompartment": { 4591 | "$ref": "AAAAAAFbsBQsL5YmOX0=" 4592 | }, 4593 | "receptionCompartment": { 4594 | "$ref": "AAAAAAFbsBQsL5Yn9uQ=" 4595 | }, 4596 | "templateParameterCompartment": { 4597 | "$ref": "AAAAAAFbsBQsMJYoKkU=" 4598 | } 4599 | } 4600 | ] 4601 | }, 4602 | { 4603 | "_type": "UMLClass", 4604 | "_id": "AAAAAAFbsBQsLJYdHk0=", 4605 | "_parent": { 4606 | "$ref": "AAAAAAFbsBJM5ZYSUy0=" 4607 | }, 4608 | "name": "Song", 4609 | "attributes": [ 4610 | { 4611 | "_type": "UMLAttribute", 4612 | "_id": "AAAAAAFbsBU7LpZHw9M=", 4613 | "_parent": { 4614 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4615 | }, 4616 | "name": "name", 4617 | "visibility": "private", 4618 | "type": "String" 4619 | }, 4620 | { 4621 | "_type": "UMLAttribute", 4622 | "_id": "AAAAAAFbsBVMqpZOZjM=", 4623 | "_parent": { 4624 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4625 | }, 4626 | "name": "artist", 4627 | "visibility": "private", 4628 | "type": "String" 4629 | }, 4630 | { 4631 | "_type": "UMLAttribute", 4632 | "_id": "AAAAAAFbsBVzY5ZVLPc=", 4633 | "_parent": { 4634 | "$ref": "AAAAAAFbsBQsLJYdHk0=" 4635 | }, 4636 | "name": "plays", 4637 | "isStatic": true, 4638 | "type": "int", 4639 | "defaultValue": "0" 4640 | } 4641 | ] 4642 | } 4643 | ] 4644 | }, 4645 | { 4646 | "_type": "UMLModel", 4647 | "_id": "AAAAAAFcVLbJrbwzQTY=", 4648 | "_parent": { 4649 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 4650 | }, 4651 | "name": "Interface", 4652 | "ownedElements": [ 4653 | { 4654 | "_type": "UMLClassDiagram", 4655 | "_id": "AAAAAAFcVLbJrrw0ew4=", 4656 | "_parent": { 4657 | "$ref": "AAAAAAFcVLbJrbwzQTY=" 4658 | }, 4659 | "name": "Class Diagram - Interface & class in the same package", 4660 | "ownedViews": [ 4661 | { 4662 | "_type": "UMLClassView", 4663 | "_id": "AAAAAAFdCNoNX7apcxo=", 4664 | "_parent": { 4665 | "$ref": "AAAAAAFcVLbJrrw0ew4=" 4666 | }, 4667 | "model": { 4668 | "$ref": "AAAAAAFdCNoNXrandKM=" 4669 | }, 4670 | "subViews": [ 4671 | { 4672 | "_type": "UMLNameCompartmentView", 4673 | "_id": "AAAAAAFdCNoNYLaqQks=", 4674 | "_parent": { 4675 | "$ref": "AAAAAAFdCNoNX7apcxo=" 4676 | }, 4677 | "model": { 4678 | "$ref": "AAAAAAFdCNoNXrandKM=" 4679 | }, 4680 | "subViews": [ 4681 | { 4682 | "_type": "LabelView", 4683 | "_id": "AAAAAAFdCNoNYLarua0=", 4684 | "_parent": { 4685 | "$ref": "AAAAAAFdCNoNYLaqQks=" 4686 | }, 4687 | "visible": false, 4688 | "fillColor": "#fff5d8", 4689 | "font": "Arial;13;0", 4690 | "left": 352, 4691 | "top": -16, 4692 | "height": 13 4693 | }, 4694 | { 4695 | "_type": "LabelView", 4696 | "_id": "AAAAAAFdCNoNYLasEeg=", 4697 | "_parent": { 4698 | "$ref": "AAAAAAFdCNoNYLaqQks=" 4699 | }, 4700 | "fillColor": "#fff5d8", 4701 | "font": "Arial;13;1", 4702 | "left": 397, 4703 | "top": 263, 4704 | "width": 64, 4705 | "height": 13, 4706 | "text": "Circle" 4707 | }, 4708 | { 4709 | "_type": "LabelView", 4710 | "_id": "AAAAAAFdCNoNYLatkGI=", 4711 | "_parent": { 4712 | "$ref": "AAAAAAFdCNoNYLaqQks=" 4713 | }, 4714 | "visible": false, 4715 | "fillColor": "#fff5d8", 4716 | "font": "Arial;13;0", 4717 | "left": 352, 4718 | "top": -16, 4719 | "width": 88.8544921875, 4720 | "height": 13, 4721 | "text": "(from Interface)" 4722 | }, 4723 | { 4724 | "_type": "LabelView", 4725 | "_id": "AAAAAAFdCNoNYLauVko=", 4726 | "_parent": { 4727 | "$ref": "AAAAAAFdCNoNYLaqQks=" 4728 | }, 4729 | "visible": false, 4730 | "fillColor": "#fff5d8", 4731 | "font": "Arial;13;0", 4732 | "left": 352, 4733 | "top": -16, 4734 | "height": 13, 4735 | "horizontalAlignment": 1 4736 | } 4737 | ], 4738 | "fillColor": "#fff5d8", 4739 | "font": "Arial;13;0", 4740 | "left": 392, 4741 | "top": 256, 4742 | "width": 74, 4743 | "height": 25, 4744 | "stereotypeLabel": { 4745 | "$ref": "AAAAAAFdCNoNYLarua0=" 4746 | }, 4747 | "nameLabel": { 4748 | "$ref": "AAAAAAFdCNoNYLasEeg=" 4749 | }, 4750 | "namespaceLabel": { 4751 | "$ref": "AAAAAAFdCNoNYLatkGI=" 4752 | }, 4753 | "propertyLabel": { 4754 | "$ref": "AAAAAAFdCNoNYLauVko=" 4755 | } 4756 | }, 4757 | { 4758 | "_type": "UMLAttributeCompartmentView", 4759 | "_id": "AAAAAAFdCNoNYLavOFQ=", 4760 | "_parent": { 4761 | "$ref": "AAAAAAFdCNoNX7apcxo=" 4762 | }, 4763 | "model": { 4764 | "$ref": "AAAAAAFdCNoNXrandKM=" 4765 | }, 4766 | "subViews": [ 4767 | { 4768 | "_type": "UMLAttributeView", 4769 | "_id": "AAAAAAFdCNokNLbU60s=", 4770 | "_parent": { 4771 | "$ref": "AAAAAAFdCNoNYLavOFQ=" 4772 | }, 4773 | "model": { 4774 | "$ref": "AAAAAAFdCNokC7bRRjg=" 4775 | }, 4776 | "fillColor": "#fff5d8", 4777 | "font": "Arial;13;0", 4778 | "left": 397, 4779 | "top": 286, 4780 | "width": 64, 4781 | "height": 13, 4782 | "text": "-radius", 4783 | "horizontalAlignment": 0 4784 | } 4785 | ], 4786 | "fillColor": "#fff5d8", 4787 | "font": "Arial;13;0", 4788 | "left": 392, 4789 | "top": 281, 4790 | "width": 74, 4791 | "height": 23 4792 | }, 4793 | { 4794 | "_type": "UMLOperationCompartmentView", 4795 | "_id": "AAAAAAFdCNoNYLawsDk=", 4796 | "_parent": { 4797 | "$ref": "AAAAAAFdCNoNX7apcxo=" 4798 | }, 4799 | "model": { 4800 | "$ref": "AAAAAAFdCNoNXrandKM=" 4801 | }, 4802 | "fillColor": "#fff5d8", 4803 | "font": "Arial;13;0", 4804 | "left": 392, 4805 | "top": 304, 4806 | "width": 74, 4807 | "height": 10 4808 | }, 4809 | { 4810 | "_type": "UMLReceptionCompartmentView", 4811 | "_id": "AAAAAAFdCNoNYbaxcds=", 4812 | "_parent": { 4813 | "$ref": "AAAAAAFdCNoNX7apcxo=" 4814 | }, 4815 | "model": { 4816 | "$ref": "AAAAAAFdCNoNXrandKM=" 4817 | }, 4818 | "visible": false, 4819 | "fillColor": "#fff5d8", 4820 | "font": "Arial;13;0", 4821 | "left": 176, 4822 | "top": -8, 4823 | "width": 10, 4824 | "height": 10 4825 | }, 4826 | { 4827 | "_type": "UMLTemplateParameterCompartmentView", 4828 | "_id": "AAAAAAFdCNoNYbayZw0=", 4829 | "_parent": { 4830 | "$ref": "AAAAAAFdCNoNX7apcxo=" 4831 | }, 4832 | "model": { 4833 | "$ref": "AAAAAAFdCNoNXrandKM=" 4834 | }, 4835 | "visible": false, 4836 | "fillColor": "#fff5d8", 4837 | "font": "Arial;13;0", 4838 | "left": 176, 4839 | "top": -8, 4840 | "width": 10, 4841 | "height": 10 4842 | } 4843 | ], 4844 | "fillColor": "#fff5d8", 4845 | "font": "Arial;13;0", 4846 | "containerChangeable": true, 4847 | "left": 392, 4848 | "top": 256, 4849 | "width": 74, 4850 | "height": 58, 4851 | "nameCompartment": { 4852 | "$ref": "AAAAAAFdCNoNYLaqQks=" 4853 | }, 4854 | "attributeCompartment": { 4855 | "$ref": "AAAAAAFdCNoNYLavOFQ=" 4856 | }, 4857 | "operationCompartment": { 4858 | "$ref": "AAAAAAFdCNoNYLawsDk=" 4859 | }, 4860 | "receptionCompartment": { 4861 | "$ref": "AAAAAAFdCNoNYbaxcds=" 4862 | }, 4863 | "templateParameterCompartment": { 4864 | "$ref": "AAAAAAFdCNoNYbayZw0=" 4865 | } 4866 | }, 4867 | { 4868 | "_type": "UMLInterfaceView", 4869 | "_id": "AAAAAAFdCNpoprbcq9k=", 4870 | "_parent": { 4871 | "$ref": "AAAAAAFcVLbJrrw0ew4=" 4872 | }, 4873 | "model": { 4874 | "$ref": "AAAAAAFdCNpopbbaocA=" 4875 | }, 4876 | "subViews": [ 4877 | { 4878 | "_type": "UMLNameCompartmentView", 4879 | "_id": "AAAAAAFdCNpop7bdSqI=", 4880 | "_parent": { 4881 | "$ref": "AAAAAAFdCNpoprbcq9k=" 4882 | }, 4883 | "model": { 4884 | "$ref": "AAAAAAFdCNpopbbaocA=" 4885 | }, 4886 | "subViews": [ 4887 | { 4888 | "_type": "LabelView", 4889 | "_id": "AAAAAAFdCNpoqLbeB8s=", 4890 | "_parent": { 4891 | "$ref": "AAAAAAFdCNpop7bdSqI=" 4892 | }, 4893 | "visible": false, 4894 | "fillColor": "#fff5d8", 4895 | "font": "Arial;13;0", 4896 | "width": 64.32080078125, 4897 | "height": 13, 4898 | "text": "«interface»" 4899 | }, 4900 | { 4901 | "_type": "LabelView", 4902 | "_id": "AAAAAAFdCNpoqLbfW+k=", 4903 | "_parent": { 4904 | "$ref": "AAAAAAFdCNpop7bdSqI=" 4905 | }, 4906 | "fillColor": "#fff5d8", 4907 | "font": "Arial;13;1", 4908 | "left": 181, 4909 | "top": 286, 4910 | "width": 79, 4911 | "height": 13, 4912 | "text": "Shape" 4913 | }, 4914 | { 4915 | "_type": "LabelView", 4916 | "_id": "AAAAAAFdCNpoqLbgTHo=", 4917 | "_parent": { 4918 | "$ref": "AAAAAAFdCNpop7bdSqI=" 4919 | }, 4920 | "visible": false, 4921 | "fillColor": "#fff5d8", 4922 | "font": "Arial;13;0", 4923 | "width": 88.8544921875, 4924 | "height": 13, 4925 | "text": "(from Interface)" 4926 | }, 4927 | { 4928 | "_type": "LabelView", 4929 | "_id": "AAAAAAFdCNpoqLbhUKI=", 4930 | "_parent": { 4931 | "$ref": "AAAAAAFdCNpop7bdSqI=" 4932 | }, 4933 | "visible": false, 4934 | "fillColor": "#fff5d8", 4935 | "font": "Arial;13;0", 4936 | "height": 13, 4937 | "horizontalAlignment": 1 4938 | } 4939 | ], 4940 | "fillColor": "#fff5d8", 4941 | "font": "Arial;13;0", 4942 | "left": 176, 4943 | "top": 279, 4944 | "width": 89, 4945 | "height": 25, 4946 | "stereotypeLabel": { 4947 | "$ref": "AAAAAAFdCNpoqLbeB8s=" 4948 | }, 4949 | "nameLabel": { 4950 | "$ref": "AAAAAAFdCNpoqLbfW+k=" 4951 | }, 4952 | "namespaceLabel": { 4953 | "$ref": "AAAAAAFdCNpoqLbgTHo=" 4954 | }, 4955 | "propertyLabel": { 4956 | "$ref": "AAAAAAFdCNpoqLbhUKI=" 4957 | } 4958 | }, 4959 | { 4960 | "_type": "UMLAttributeCompartmentView", 4961 | "_id": "AAAAAAFdCNpoqbbiwfQ=", 4962 | "_parent": { 4963 | "$ref": "AAAAAAFdCNpoprbcq9k=" 4964 | }, 4965 | "model": { 4966 | "$ref": "AAAAAAFdCNpopbbaocA=" 4967 | }, 4968 | "visible": false, 4969 | "fillColor": "#fff5d8", 4970 | "font": "Arial;13;0", 4971 | "width": 10, 4972 | "height": 10 4973 | }, 4974 | { 4975 | "_type": "UMLOperationCompartmentView", 4976 | "_id": "AAAAAAFdCNpoqbbjAwc=", 4977 | "_parent": { 4978 | "$ref": "AAAAAAFdCNpoprbcq9k=" 4979 | }, 4980 | "model": { 4981 | "$ref": "AAAAAAFdCNpopbbaocA=" 4982 | }, 4983 | "subViews": [ 4984 | { 4985 | "_type": "UMLOperationView", 4986 | "_id": "AAAAAAFdCNp877cI2y4=", 4987 | "_parent": { 4988 | "$ref": "AAAAAAFdCNpoqbbjAwc=" 4989 | }, 4990 | "model": { 4991 | "$ref": "AAAAAAFdCNp8x7cF0rI=" 4992 | }, 4993 | "fillColor": "#fff5d8", 4994 | "font": "Arial;13;0", 4995 | "left": 181, 4996 | "top": 309, 4997 | "width": 79, 4998 | "height": 13, 4999 | "text": "+area()", 5000 | "horizontalAlignment": 0 5001 | }, 5002 | { 5003 | "_type": "UMLOperationView", 5004 | "_id": "AAAAAAFdCNqGLLcPzq4=", 5005 | "_parent": { 5006 | "$ref": "AAAAAAFdCNpoqbbjAwc=" 5007 | }, 5008 | "model": { 5009 | "$ref": "AAAAAAFdCNqGC7cMA2w=" 5010 | }, 5011 | "fillColor": "#fff5d8", 5012 | "font": "Arial;13;0", 5013 | "left": 181, 5014 | "top": 324, 5015 | "width": 79, 5016 | "height": 13, 5017 | "text": "+perimeter()", 5018 | "horizontalAlignment": 0 5019 | } 5020 | ], 5021 | "fillColor": "#fff5d8", 5022 | "font": "Arial;13;0", 5023 | "left": 176, 5024 | "top": 304, 5025 | "width": 89, 5026 | "height": 38 5027 | }, 5028 | { 5029 | "_type": "UMLReceptionCompartmentView", 5030 | "_id": "AAAAAAFdCNpoqrbkmkk=", 5031 | "_parent": { 5032 | "$ref": "AAAAAAFdCNpoprbcq9k=" 5033 | }, 5034 | "model": { 5035 | "$ref": "AAAAAAFdCNpopbbaocA=" 5036 | }, 5037 | "visible": false, 5038 | "fillColor": "#fff5d8", 5039 | "font": "Arial;13;0", 5040 | "width": 10, 5041 | "height": 10 5042 | }, 5043 | { 5044 | "_type": "UMLTemplateParameterCompartmentView", 5045 | "_id": "AAAAAAFdCNpoqrbl//g=", 5046 | "_parent": { 5047 | "$ref": "AAAAAAFdCNpoprbcq9k=" 5048 | }, 5049 | "model": { 5050 | "$ref": "AAAAAAFdCNpopbbaocA=" 5051 | }, 5052 | "visible": false, 5053 | "fillColor": "#fff5d8", 5054 | "font": "Arial;13;0", 5055 | "width": 10, 5056 | "height": 10 5057 | } 5058 | ], 5059 | "fillColor": "#fff5d8", 5060 | "font": "Arial;13;0", 5061 | "containerChangeable": true, 5062 | "left": 176, 5063 | "top": 256, 5064 | "width": 89, 5065 | "height": 87, 5066 | "stereotypeDisplay": "icon", 5067 | "nameCompartment": { 5068 | "$ref": "AAAAAAFdCNpop7bdSqI=" 5069 | }, 5070 | "suppressAttributes": true, 5071 | "attributeCompartment": { 5072 | "$ref": "AAAAAAFdCNpoqbbiwfQ=" 5073 | }, 5074 | "operationCompartment": { 5075 | "$ref": "AAAAAAFdCNpoqbbjAwc=" 5076 | }, 5077 | "receptionCompartment": { 5078 | "$ref": "AAAAAAFdCNpoqrbkmkk=" 5079 | }, 5080 | "templateParameterCompartment": { 5081 | "$ref": "AAAAAAFdCNpoqrbl//g=" 5082 | } 5083 | }, 5084 | { 5085 | "_type": "UMLInterfaceRealizationView", 5086 | "_id": "AAAAAAFdCNrEULcVTdE=", 5087 | "_parent": { 5088 | "$ref": "AAAAAAFcVLbJrrw0ew4=" 5089 | }, 5090 | "model": { 5091 | "$ref": "AAAAAAFdCNrET7cUKgQ=" 5092 | }, 5093 | "subViews": [ 5094 | { 5095 | "_type": "EdgeLabelView", 5096 | "_id": "AAAAAAFdCNrEULcWCV4=", 5097 | "_parent": { 5098 | "$ref": "AAAAAAFdCNrEULcVTdE=" 5099 | }, 5100 | "model": { 5101 | "$ref": "AAAAAAFdCNrET7cUKgQ=" 5102 | }, 5103 | "visible": false, 5104 | "font": "Arial;13;0", 5105 | "left": 309, 5106 | "top": 288, 5107 | "height": 13, 5108 | "alpha": 1.5707963267948966, 5109 | "distance": 15, 5110 | "hostEdge": { 5111 | "$ref": "AAAAAAFdCNrEULcVTdE=" 5112 | }, 5113 | "edgePosition": 1 5114 | }, 5115 | { 5116 | "_type": "EdgeLabelView", 5117 | "_id": "AAAAAAFdCNrEUbcXxig=", 5118 | "_parent": { 5119 | "$ref": "AAAAAAFdCNrEULcVTdE=" 5120 | }, 5121 | "model": { 5122 | "$ref": "AAAAAAFdCNrET7cUKgQ=" 5123 | }, 5124 | "visible": null, 5125 | "font": "Arial;13;0", 5126 | "left": 308, 5127 | "top": 303, 5128 | "height": 13, 5129 | "alpha": 1.5707963267948966, 5130 | "distance": 30, 5131 | "hostEdge": { 5132 | "$ref": "AAAAAAFdCNrEULcVTdE=" 5133 | }, 5134 | "edgePosition": 1 5135 | }, 5136 | { 5137 | "_type": "EdgeLabelView", 5138 | "_id": "AAAAAAFdCNrEUbcYk3c=", 5139 | "_parent": { 5140 | "$ref": "AAAAAAFdCNrEULcVTdE=" 5141 | }, 5142 | "model": { 5143 | "$ref": "AAAAAAFdCNrET7cUKgQ=" 5144 | }, 5145 | "visible": false, 5146 | "font": "Arial;13;0", 5147 | "left": 312, 5148 | "top": 259, 5149 | "height": 13, 5150 | "alpha": -1.5707963267948966, 5151 | "distance": 15, 5152 | "hostEdge": { 5153 | "$ref": "AAAAAAFdCNrEULcVTdE=" 5154 | }, 5155 | "edgePosition": 1 5156 | } 5157 | ], 5158 | "font": "Arial;13;0", 5159 | "head": { 5160 | "$ref": "AAAAAAFdCNpoprbcq9k=" 5161 | }, 5162 | "tail": { 5163 | "$ref": "AAAAAAFdCNoNX7apcxo=" 5164 | }, 5165 | "lineStyle": 1, 5166 | "points": "391:287;231.5:274.4111111111111", 5167 | "showVisibility": true, 5168 | "nameLabel": { 5169 | "$ref": "AAAAAAFdCNrEULcWCV4=" 5170 | }, 5171 | "stereotypeLabel": { 5172 | "$ref": "AAAAAAFdCNrEUbcXxig=" 5173 | }, 5174 | "propertyLabel": { 5175 | "$ref": "AAAAAAFdCNrEUbcYk3c=" 5176 | } 5177 | } 5178 | ] 5179 | }, 5180 | { 5181 | "_type": "UMLClass", 5182 | "_id": "AAAAAAFdCNoNXrandKM=", 5183 | "_parent": { 5184 | "$ref": "AAAAAAFcVLbJrbwzQTY=" 5185 | }, 5186 | "name": "Circle", 5187 | "ownedElements": [ 5188 | { 5189 | "_type": "UMLInterfaceRealization", 5190 | "_id": "AAAAAAFdCNrET7cUKgQ=", 5191 | "_parent": { 5192 | "$ref": "AAAAAAFdCNoNXrandKM=" 5193 | }, 5194 | "source": { 5195 | "$ref": "AAAAAAFdCNoNXrandKM=" 5196 | }, 5197 | "target": { 5198 | "$ref": "AAAAAAFdCNpopbbaocA=" 5199 | } 5200 | } 5201 | ], 5202 | "attributes": [ 5203 | { 5204 | "_type": "UMLAttribute", 5205 | "_id": "AAAAAAFdCNokC7bRRjg=", 5206 | "_parent": { 5207 | "$ref": "AAAAAAFdCNoNXrandKM=" 5208 | }, 5209 | "name": "radius", 5210 | "visibility": "private", 5211 | "type": "" 5212 | } 5213 | ] 5214 | }, 5215 | { 5216 | "_type": "UMLInterface", 5217 | "_id": "AAAAAAFdCNpopbbaocA=", 5218 | "_parent": { 5219 | "$ref": "AAAAAAFcVLbJrbwzQTY=" 5220 | }, 5221 | "name": "Shape", 5222 | "operations": [ 5223 | { 5224 | "_type": "UMLOperation", 5225 | "_id": "AAAAAAFdCNp8x7cF0rI=", 5226 | "_parent": { 5227 | "$ref": "AAAAAAFdCNpopbbaocA=" 5228 | }, 5229 | "name": "area" 5230 | }, 5231 | { 5232 | "_type": "UMLOperation", 5233 | "_id": "AAAAAAFdCNqGC7cMA2w=", 5234 | "_parent": { 5235 | "$ref": "AAAAAAFdCNpopbbaocA=" 5236 | }, 5237 | "name": "perimeter" 5238 | } 5239 | ] 5240 | } 5241 | ] 5242 | }, 5243 | { 5244 | "_type": "UMLModel", 5245 | "_id": "AAAAAAFdCNXj4bUZOUk=", 5246 | "_parent": { 5247 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 5248 | }, 5249 | "name": "Interface in a Package", 5250 | "ownedElements": [ 5251 | { 5252 | "_type": "UMLClassDiagram", 5253 | "_id": "AAAAAAFcnGtw7mvV9+U=", 5254 | "_parent": { 5255 | "$ref": "AAAAAAFdCNXj4bUZOUk=" 5256 | }, 5257 | "name": "Class Diagram - Interface in a package", 5258 | "ownedViews": [ 5259 | { 5260 | "_type": "UMLClassView", 5261 | "_id": "AAAAAAFdCNtSJrcnunk=", 5262 | "_parent": { 5263 | "$ref": "AAAAAAFcnGtw7mvV9+U=" 5264 | }, 5265 | "model": { 5266 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5267 | }, 5268 | "subViews": [ 5269 | { 5270 | "_type": "UMLNameCompartmentView", 5271 | "_id": "AAAAAAFdCNtSJrco1No=", 5272 | "_parent": { 5273 | "$ref": "AAAAAAFdCNtSJrcnunk=" 5274 | }, 5275 | "model": { 5276 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5277 | }, 5278 | "subViews": [ 5279 | { 5280 | "_type": "LabelView", 5281 | "_id": "AAAAAAFdCNtSJ7cpE64=", 5282 | "_parent": { 5283 | "$ref": "AAAAAAFdCNtSJrco1No=" 5284 | }, 5285 | "visible": false, 5286 | "fillColor": "#fff5d8", 5287 | "font": "Arial;13;0", 5288 | "left": 112, 5289 | "top": 32, 5290 | "height": 13 5291 | }, 5292 | { 5293 | "_type": "LabelView", 5294 | "_id": "AAAAAAFdCNtSKLcq4HE=", 5295 | "_parent": { 5296 | "$ref": "AAAAAAFdCNtSJrco1No=" 5297 | }, 5298 | "fillColor": "#fff5d8", 5299 | "font": "Arial;13;1", 5300 | "left": 493, 5301 | "top": 303, 5302 | "width": 64, 5303 | "height": 13, 5304 | "text": "Circle" 5305 | }, 5306 | { 5307 | "_type": "LabelView", 5308 | "_id": "AAAAAAFdCNtSKLcr9Nw=", 5309 | "_parent": { 5310 | "$ref": "AAAAAAFdCNtSJrco1No=" 5311 | }, 5312 | "visible": false, 5313 | "fillColor": "#fff5d8", 5314 | "font": "Arial;13;0", 5315 | "left": 112, 5316 | "top": 32, 5317 | "width": 167.62890625, 5318 | "height": 13, 5319 | "text": "(from Interface in a Package)" 5320 | }, 5321 | { 5322 | "_type": "LabelView", 5323 | "_id": "AAAAAAFdCNtSKLcs3uA=", 5324 | "_parent": { 5325 | "$ref": "AAAAAAFdCNtSJrco1No=" 5326 | }, 5327 | "visible": false, 5328 | "fillColor": "#fff5d8", 5329 | "font": "Arial;13;0", 5330 | "left": 112, 5331 | "top": 32, 5332 | "height": 13, 5333 | "horizontalAlignment": 1 5334 | } 5335 | ], 5336 | "fillColor": "#fff5d8", 5337 | "font": "Arial;13;0", 5338 | "left": 488, 5339 | "top": 296, 5340 | "width": 74, 5341 | "height": 25, 5342 | "stereotypeLabel": { 5343 | "$ref": "AAAAAAFdCNtSJ7cpE64=" 5344 | }, 5345 | "nameLabel": { 5346 | "$ref": "AAAAAAFdCNtSKLcq4HE=" 5347 | }, 5348 | "namespaceLabel": { 5349 | "$ref": "AAAAAAFdCNtSKLcr9Nw=" 5350 | }, 5351 | "propertyLabel": { 5352 | "$ref": "AAAAAAFdCNtSKLcs3uA=" 5353 | } 5354 | }, 5355 | { 5356 | "_type": "UMLAttributeCompartmentView", 5357 | "_id": "AAAAAAFdCNtSKLctUtw=", 5358 | "_parent": { 5359 | "$ref": "AAAAAAFdCNtSJrcnunk=" 5360 | }, 5361 | "model": { 5362 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5363 | }, 5364 | "subViews": [ 5365 | { 5366 | "_type": "UMLAttributeView", 5367 | "_id": "AAAAAAFdCNtiK7dSoAQ=", 5368 | "_parent": { 5369 | "$ref": "AAAAAAFdCNtSKLctUtw=" 5370 | }, 5371 | "model": { 5372 | "$ref": "AAAAAAFdCNtiALdPsHQ=" 5373 | }, 5374 | "fillColor": "#fff5d8", 5375 | "font": "Arial;13;0", 5376 | "left": 493, 5377 | "top": 326, 5378 | "width": 64, 5379 | "height": 13, 5380 | "text": "-radius", 5381 | "horizontalAlignment": 0 5382 | } 5383 | ], 5384 | "fillColor": "#fff5d8", 5385 | "font": "Arial;13;0", 5386 | "left": 488, 5387 | "top": 321, 5388 | "width": 74, 5389 | "height": 23 5390 | }, 5391 | { 5392 | "_type": "UMLOperationCompartmentView", 5393 | "_id": "AAAAAAFdCNtSKbcu2L8=", 5394 | "_parent": { 5395 | "$ref": "AAAAAAFdCNtSJrcnunk=" 5396 | }, 5397 | "model": { 5398 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5399 | }, 5400 | "fillColor": "#fff5d8", 5401 | "font": "Arial;13;0", 5402 | "left": 488, 5403 | "top": 344, 5404 | "width": 74, 5405 | "height": 10 5406 | }, 5407 | { 5408 | "_type": "UMLReceptionCompartmentView", 5409 | "_id": "AAAAAAFdCNtSKbcvF0M=", 5410 | "_parent": { 5411 | "$ref": "AAAAAAFdCNtSJrcnunk=" 5412 | }, 5413 | "model": { 5414 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5415 | }, 5416 | "visible": false, 5417 | "fillColor": "#fff5d8", 5418 | "font": "Arial;13;0", 5419 | "left": 56, 5420 | "top": 16, 5421 | "width": 10, 5422 | "height": 10 5423 | }, 5424 | { 5425 | "_type": "UMLTemplateParameterCompartmentView", 5426 | "_id": "AAAAAAFdCNtSKrcwhFA=", 5427 | "_parent": { 5428 | "$ref": "AAAAAAFdCNtSJrcnunk=" 5429 | }, 5430 | "model": { 5431 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5432 | }, 5433 | "visible": false, 5434 | "fillColor": "#fff5d8", 5435 | "font": "Arial;13;0", 5436 | "left": 56, 5437 | "top": 16, 5438 | "width": 10, 5439 | "height": 10 5440 | } 5441 | ], 5442 | "fillColor": "#fff5d8", 5443 | "font": "Arial;13;0", 5444 | "containerChangeable": true, 5445 | "left": 488, 5446 | "top": 296, 5447 | "width": 74, 5448 | "height": 58, 5449 | "nameCompartment": { 5450 | "$ref": "AAAAAAFdCNtSJrco1No=" 5451 | }, 5452 | "attributeCompartment": { 5453 | "$ref": "AAAAAAFdCNtSKLctUtw=" 5454 | }, 5455 | "operationCompartment": { 5456 | "$ref": "AAAAAAFdCNtSKbcu2L8=" 5457 | }, 5458 | "receptionCompartment": { 5459 | "$ref": "AAAAAAFdCNtSKbcvF0M=" 5460 | }, 5461 | "templateParameterCompartment": { 5462 | "$ref": "AAAAAAFdCNtSKrcwhFA=" 5463 | } 5464 | }, 5465 | { 5466 | "_type": "UMLPackageView", 5467 | "_id": "AAAAAAFdCNuwI7eSnmo=", 5468 | "_parent": { 5469 | "$ref": "AAAAAAFcnGtw7mvV9+U=" 5470 | }, 5471 | "model": { 5472 | "$ref": "AAAAAAFdCNuwIreQ/PE=" 5473 | }, 5474 | "subViews": [ 5475 | { 5476 | "_type": "UMLNameCompartmentView", 5477 | "_id": "AAAAAAFdCNuwI7eT3pI=", 5478 | "_parent": { 5479 | "$ref": "AAAAAAFdCNuwI7eSnmo=" 5480 | }, 5481 | "model": { 5482 | "$ref": "AAAAAAFdCNuwIreQ/PE=" 5483 | }, 5484 | "subViews": [ 5485 | { 5486 | "_type": "LabelView", 5487 | "_id": "AAAAAAFdCNuwI7eU5kQ=", 5488 | "_parent": { 5489 | "$ref": "AAAAAAFdCNuwI7eT3pI=" 5490 | }, 5491 | "visible": false, 5492 | "fillColor": "#fff5d8", 5493 | "font": "Arial;13;0", 5494 | "height": 13 5495 | }, 5496 | { 5497 | "_type": "LabelView", 5498 | "_id": "AAAAAAFdCNuwJLeVZEs=", 5499 | "_parent": { 5500 | "$ref": "AAAAAAFdCNuwI7eT3pI=" 5501 | }, 5502 | "fillColor": "#fff5d8", 5503 | "font": "Arial;13;1", 5504 | "left": 205, 5505 | "top": 270, 5506 | "width": 143, 5507 | "height": 13, 5508 | "text": "Interface" 5509 | }, 5510 | { 5511 | "_type": "LabelView", 5512 | "_id": "AAAAAAFdCNuwJLeWPt0=", 5513 | "_parent": { 5514 | "$ref": "AAAAAAFdCNuwI7eT3pI=" 5515 | }, 5516 | "visible": false, 5517 | "fillColor": "#fff5d8", 5518 | "font": "Arial;13;0", 5519 | "width": 167.62890625, 5520 | "height": 13, 5521 | "text": "(from Interface in a Package)" 5522 | }, 5523 | { 5524 | "_type": "LabelView", 5525 | "_id": "AAAAAAFdCNuwJLeXJts=", 5526 | "_parent": { 5527 | "$ref": "AAAAAAFdCNuwI7eT3pI=" 5528 | }, 5529 | "visible": false, 5530 | "fillColor": "#fff5d8", 5531 | "font": "Arial;13;0", 5532 | "height": 13, 5533 | "horizontalAlignment": 1 5534 | } 5535 | ], 5536 | "fillColor": "#fff5d8", 5537 | "font": "Arial;13;0", 5538 | "left": 200, 5539 | "top": 263, 5540 | "width": 153, 5541 | "height": 25, 5542 | "stereotypeLabel": { 5543 | "$ref": "AAAAAAFdCNuwI7eU5kQ=" 5544 | }, 5545 | "nameLabel": { 5546 | "$ref": "AAAAAAFdCNuwJLeVZEs=" 5547 | }, 5548 | "namespaceLabel": { 5549 | "$ref": "AAAAAAFdCNuwJLeWPt0=" 5550 | }, 5551 | "propertyLabel": { 5552 | "$ref": "AAAAAAFdCNuwJLeXJts=" 5553 | } 5554 | } 5555 | ], 5556 | "containedViews": [ 5557 | { 5558 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5559 | } 5560 | ], 5561 | "fillColor": "#fff5d8", 5562 | "font": "Arial;13;0", 5563 | "containerChangeable": true, 5564 | "left": 200, 5565 | "top": 248, 5566 | "width": 153, 5567 | "height": 161, 5568 | "nameCompartment": { 5569 | "$ref": "AAAAAAFdCNuwI7eT3pI=" 5570 | } 5571 | }, 5572 | { 5573 | "_type": "UMLInterfaceView", 5574 | "_id": "AAAAAAFdCNt7MbdZbRI=", 5575 | "_parent": { 5576 | "$ref": "AAAAAAFcnGtw7mvV9+U=" 5577 | }, 5578 | "model": { 5579 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5580 | }, 5581 | "subViews": [ 5582 | { 5583 | "_type": "UMLNameCompartmentView", 5584 | "_id": "AAAAAAFdCNt7MbdaxYI=", 5585 | "_parent": { 5586 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5587 | }, 5588 | "model": { 5589 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5590 | }, 5591 | "subViews": [ 5592 | { 5593 | "_type": "LabelView", 5594 | "_id": "AAAAAAFdCNt7MbdbohM=", 5595 | "_parent": { 5596 | "$ref": "AAAAAAFdCNt7MbdaxYI=" 5597 | }, 5598 | "visible": false, 5599 | "fillColor": "#fff5d8", 5600 | "font": "Arial;13;0", 5601 | "left": -48, 5602 | "top": 16, 5603 | "width": 64.32080078125, 5604 | "height": 13, 5605 | "text": "«interface»" 5606 | }, 5607 | { 5608 | "_type": "LabelView", 5609 | "_id": "AAAAAAFdCNt7MbdcjyM=", 5610 | "_parent": { 5611 | "$ref": "AAAAAAFdCNt7MbdaxYI=" 5612 | }, 5613 | "fillColor": "#fff5d8", 5614 | "font": "Arial;13;1", 5615 | "left": 237, 5616 | "top": 334, 5617 | "width": 79, 5618 | "height": 13, 5619 | "text": "Shape" 5620 | }, 5621 | { 5622 | "_type": "LabelView", 5623 | "_id": "AAAAAAFdCNt7Mbdd/dk=", 5624 | "_parent": { 5625 | "$ref": "AAAAAAFdCNt7MbdaxYI=" 5626 | }, 5627 | "visible": false, 5628 | "fillColor": "#fff5d8", 5629 | "font": "Arial;13;0", 5630 | "left": -48, 5631 | "top": 16, 5632 | "width": 166, 5633 | "height": 13, 5634 | "text": "(from Interface)" 5635 | }, 5636 | { 5637 | "_type": "LabelView", 5638 | "_id": "AAAAAAFdCNt7MrdekJg=", 5639 | "_parent": { 5640 | "$ref": "AAAAAAFdCNt7MbdaxYI=" 5641 | }, 5642 | "visible": false, 5643 | "fillColor": "#fff5d8", 5644 | "font": "Arial;13;0", 5645 | "left": -48, 5646 | "top": 16, 5647 | "height": 13, 5648 | "horizontalAlignment": 1 5649 | } 5650 | ], 5651 | "fillColor": "#fff5d8", 5652 | "font": "Arial;13;0", 5653 | "left": 232, 5654 | "top": 327, 5655 | "width": 89, 5656 | "height": 25, 5657 | "stereotypeLabel": { 5658 | "$ref": "AAAAAAFdCNt7MbdbohM=" 5659 | }, 5660 | "nameLabel": { 5661 | "$ref": "AAAAAAFdCNt7MbdcjyM=" 5662 | }, 5663 | "namespaceLabel": { 5664 | "$ref": "AAAAAAFdCNt7Mbdd/dk=" 5665 | }, 5666 | "propertyLabel": { 5667 | "$ref": "AAAAAAFdCNt7MrdekJg=" 5668 | } 5669 | }, 5670 | { 5671 | "_type": "UMLAttributeCompartmentView", 5672 | "_id": "AAAAAAFdCNt7Mrdfpog=", 5673 | "_parent": { 5674 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5675 | }, 5676 | "model": { 5677 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5678 | }, 5679 | "visible": false, 5680 | "fillColor": "#fff5d8", 5681 | "font": "Arial;13;0", 5682 | "left": -40, 5683 | "top": 8, 5684 | "width": 10, 5685 | "height": 10 5686 | }, 5687 | { 5688 | "_type": "UMLOperationCompartmentView", 5689 | "_id": "AAAAAAFdCNt7MrdgDsk=", 5690 | "_parent": { 5691 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5692 | }, 5693 | "model": { 5694 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5695 | }, 5696 | "subViews": [ 5697 | { 5698 | "_type": "UMLOperationView", 5699 | "_id": "AAAAAAFdCNuE+reFMMo=", 5700 | "_parent": { 5701 | "$ref": "AAAAAAFdCNt7MrdgDsk=" 5702 | }, 5703 | "model": { 5704 | "$ref": "AAAAAAFdCNuE17eCtqI=" 5705 | }, 5706 | "fillColor": "#fff5d8", 5707 | "font": "Arial;13;0", 5708 | "left": 237, 5709 | "top": 357, 5710 | "width": 79, 5711 | "height": 13, 5712 | "text": "+area()", 5713 | "horizontalAlignment": 0 5714 | }, 5715 | { 5716 | "_type": "UMLOperationView", 5717 | "_id": "AAAAAAFdCNuM5beMAmw=", 5718 | "_parent": { 5719 | "$ref": "AAAAAAFdCNt7MrdgDsk=" 5720 | }, 5721 | "model": { 5722 | "$ref": "AAAAAAFdCNuMwreJZvI=" 5723 | }, 5724 | "fillColor": "#fff5d8", 5725 | "font": "Arial;13;0", 5726 | "left": 237, 5727 | "top": 372, 5728 | "width": 79, 5729 | "height": 13, 5730 | "text": "+perimeter()", 5731 | "horizontalAlignment": 0 5732 | } 5733 | ], 5734 | "fillColor": "#fff5d8", 5735 | "font": "Arial;13;0", 5736 | "left": 232, 5737 | "top": 352, 5738 | "width": 89, 5739 | "height": 38 5740 | }, 5741 | { 5742 | "_type": "UMLReceptionCompartmentView", 5743 | "_id": "AAAAAAFdCNt7Mrdh+Ng=", 5744 | "_parent": { 5745 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5746 | }, 5747 | "model": { 5748 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5749 | }, 5750 | "visible": false, 5751 | "fillColor": "#fff5d8", 5752 | "font": "Arial;13;0", 5753 | "left": -40, 5754 | "top": 8, 5755 | "width": 10, 5756 | "height": 10 5757 | }, 5758 | { 5759 | "_type": "UMLTemplateParameterCompartmentView", 5760 | "_id": "AAAAAAFdCNt7Mrdiw4c=", 5761 | "_parent": { 5762 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5763 | }, 5764 | "model": { 5765 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5766 | }, 5767 | "visible": false, 5768 | "fillColor": "#fff5d8", 5769 | "font": "Arial;13;0", 5770 | "left": -40, 5771 | "top": 8, 5772 | "width": 10, 5773 | "height": 10 5774 | } 5775 | ], 5776 | "containerView": { 5777 | "$ref": "AAAAAAFdCNuwI7eSnmo=" 5778 | }, 5779 | "fillColor": "#fff5d8", 5780 | "font": "Arial;13;0", 5781 | "containerChangeable": true, 5782 | "left": 232, 5783 | "top": 304, 5784 | "width": 89, 5785 | "height": 87, 5786 | "stereotypeDisplay": "icon", 5787 | "nameCompartment": { 5788 | "$ref": "AAAAAAFdCNt7MbdaxYI=" 5789 | }, 5790 | "suppressAttributes": true, 5791 | "attributeCompartment": { 5792 | "$ref": "AAAAAAFdCNt7Mrdfpog=" 5793 | }, 5794 | "operationCompartment": { 5795 | "$ref": "AAAAAAFdCNt7MrdgDsk=" 5796 | }, 5797 | "receptionCompartment": { 5798 | "$ref": "AAAAAAFdCNt7Mrdh+Ng=" 5799 | }, 5800 | "templateParameterCompartment": { 5801 | "$ref": "AAAAAAFdCNt7Mrdiw4c=" 5802 | } 5803 | }, 5804 | { 5805 | "_type": "UMLInterfaceRealizationView", 5806 | "_id": "AAAAAAFdCNwUY7eyW/4=", 5807 | "_parent": { 5808 | "$ref": "AAAAAAFcnGtw7mvV9+U=" 5809 | }, 5810 | "model": { 5811 | "$ref": "AAAAAAFdCNwUY7ex7ao=" 5812 | }, 5813 | "subViews": [ 5814 | { 5815 | "_type": "EdgeLabelView", 5816 | "_id": "AAAAAAFdCNwUY7ezVa8=", 5817 | "_parent": { 5818 | "$ref": "AAAAAAFdCNwUY7eyW/4=" 5819 | }, 5820 | "model": { 5821 | "$ref": "AAAAAAFdCNwUY7ex7ao=" 5822 | }, 5823 | "visible": false, 5824 | "font": "Arial;13;0", 5825 | "left": 386, 5826 | "top": 332, 5827 | "height": 13, 5828 | "alpha": 1.5707963267948966, 5829 | "distance": 15, 5830 | "hostEdge": { 5831 | "$ref": "AAAAAAFdCNwUY7eyW/4=" 5832 | }, 5833 | "edgePosition": 1 5834 | }, 5835 | { 5836 | "_type": "EdgeLabelView", 5837 | "_id": "AAAAAAFdCNwUZLe0pG4=", 5838 | "_parent": { 5839 | "$ref": "AAAAAAFdCNwUY7eyW/4=" 5840 | }, 5841 | "model": { 5842 | "$ref": "AAAAAAFdCNwUY7ex7ao=" 5843 | }, 5844 | "visible": null, 5845 | "font": "Arial;13;0", 5846 | "left": 386, 5847 | "top": 347, 5848 | "height": 13, 5849 | "alpha": 1.5707963267948966, 5850 | "distance": 30, 5851 | "hostEdge": { 5852 | "$ref": "AAAAAAFdCNwUY7eyW/4=" 5853 | }, 5854 | "edgePosition": 1 5855 | }, 5856 | { 5857 | "_type": "EdgeLabelView", 5858 | "_id": "AAAAAAFdCNwUZLe1tR8=", 5859 | "_parent": { 5860 | "$ref": "AAAAAAFdCNwUY7eyW/4=" 5861 | }, 5862 | "model": { 5863 | "$ref": "AAAAAAFdCNwUY7ex7ao=" 5864 | }, 5865 | "visible": false, 5866 | "font": "Arial;13;0", 5867 | "left": 387, 5868 | "top": 303, 5869 | "height": 13, 5870 | "alpha": -1.5707963267948966, 5871 | "distance": 15, 5872 | "hostEdge": { 5873 | "$ref": "AAAAAAFdCNwUY7eyW/4=" 5874 | }, 5875 | "edgePosition": 1 5876 | } 5877 | ], 5878 | "font": "Arial;13;0", 5879 | "head": { 5880 | "$ref": "AAAAAAFdCNt7MbdZbRI=" 5881 | }, 5882 | "tail": { 5883 | "$ref": "AAAAAAFdCNtSJrcnunk=" 5884 | }, 5885 | "lineStyle": 1, 5886 | "points": "487:327;287.5:322.15555555555557", 5887 | "showVisibility": true, 5888 | "nameLabel": { 5889 | "$ref": "AAAAAAFdCNwUY7ezVa8=" 5890 | }, 5891 | "stereotypeLabel": { 5892 | "$ref": "AAAAAAFdCNwUZLe0pG4=" 5893 | }, 5894 | "propertyLabel": { 5895 | "$ref": "AAAAAAFdCNwUZLe1tR8=" 5896 | } 5897 | } 5898 | ] 5899 | }, 5900 | { 5901 | "_type": "UMLClass", 5902 | "_id": "AAAAAAFdCNtSJLcl8co=", 5903 | "_parent": { 5904 | "$ref": "AAAAAAFdCNXj4bUZOUk=" 5905 | }, 5906 | "name": "Circle", 5907 | "ownedElements": [ 5908 | { 5909 | "_type": "UMLInterfaceRealization", 5910 | "_id": "AAAAAAFdCNwUY7ex7ao=", 5911 | "_parent": { 5912 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5913 | }, 5914 | "source": { 5915 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5916 | }, 5917 | "target": { 5918 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5919 | } 5920 | } 5921 | ], 5922 | "attributes": [ 5923 | { 5924 | "_type": "UMLAttribute", 5925 | "_id": "AAAAAAFdCNtiALdPsHQ=", 5926 | "_parent": { 5927 | "$ref": "AAAAAAFdCNtSJLcl8co=" 5928 | }, 5929 | "name": "radius", 5930 | "visibility": "private", 5931 | "type": "" 5932 | } 5933 | ] 5934 | }, 5935 | { 5936 | "_type": "UMLPackage", 5937 | "_id": "AAAAAAFdCNuwIreQ/PE=", 5938 | "_parent": { 5939 | "$ref": "AAAAAAFdCNXj4bUZOUk=" 5940 | }, 5941 | "name": "Interface", 5942 | "ownedElements": [ 5943 | { 5944 | "_type": "UMLInterface", 5945 | "_id": "AAAAAAFdCNt7MLdXN4M=", 5946 | "_parent": { 5947 | "$ref": "AAAAAAFdCNuwIreQ/PE=" 5948 | }, 5949 | "name": "Shape", 5950 | "operations": [ 5951 | { 5952 | "_type": "UMLOperation", 5953 | "_id": "AAAAAAFdCNuE17eCtqI=", 5954 | "_parent": { 5955 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5956 | }, 5957 | "name": "area" 5958 | }, 5959 | { 5960 | "_type": "UMLOperation", 5961 | "_id": "AAAAAAFdCNuMwreJZvI=", 5962 | "_parent": { 5963 | "$ref": "AAAAAAFdCNt7MLdXN4M=" 5964 | }, 5965 | "name": "perimeter" 5966 | } 5967 | ] 5968 | } 5969 | ] 5970 | } 5971 | ] 5972 | }, 5973 | { 5974 | "_type": "UMLModel", 5975 | "_id": "AAAAAAFrIySFO9Vng18=", 5976 | "_parent": { 5977 | "$ref": "AAAAAAFF+h6SjaM2Hec=" 5978 | }, 5979 | "name": "Default Values", 5980 | "ownedElements": [ 5981 | { 5982 | "_type": "UMLClassDiagram", 5983 | "_id": "AAAAAAFrIySFO9Vo5lc=", 5984 | "_parent": { 5985 | "$ref": "AAAAAAFrIySFO9Vng18=" 5986 | }, 5987 | "name": "Class Diagram", 5988 | "ownedViews": [ 5989 | { 5990 | "_type": "UMLClassView", 5991 | "_id": "AAAAAAFrIySFO9VpTus=", 5992 | "_parent": { 5993 | "$ref": "AAAAAAFrIySFO9Vo5lc=" 5994 | }, 5995 | "model": { 5996 | "$ref": "AAAAAAFrIySFPNWCrRU=" 5997 | }, 5998 | "subViews": [ 5999 | { 6000 | "_type": "UMLNameCompartmentView", 6001 | "_id": "AAAAAAFrIySFO9VqeYw=", 6002 | "_parent": { 6003 | "$ref": "AAAAAAFrIySFO9VpTus=" 6004 | }, 6005 | "model": { 6006 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6007 | }, 6008 | "subViews": [ 6009 | { 6010 | "_type": "LabelView", 6011 | "_id": "AAAAAAFrIySFO9VrR3w=", 6012 | "_parent": { 6013 | "$ref": "AAAAAAFrIySFO9VqeYw=" 6014 | }, 6015 | "visible": false, 6016 | "fillColor": "#fff5d8", 6017 | "font": "Arial;13;0", 6018 | "left": 144, 6019 | "top": -16, 6020 | "height": 13 6021 | }, 6022 | { 6023 | "_type": "LabelView", 6024 | "_id": "AAAAAAFrIySFO9VsGOo=", 6025 | "_parent": { 6026 | "$ref": "AAAAAAFrIySFO9VqeYw=" 6027 | }, 6028 | "fillColor": "#fff5d8", 6029 | "font": "Arial;13;1", 6030 | "left": 261, 6031 | "top": 247, 6032 | "width": 126.0009765625, 6033 | "height": 13, 6034 | "text": "Author" 6035 | }, 6036 | { 6037 | "_type": "LabelView", 6038 | "_id": "AAAAAAFrIySFO9VtHBU=", 6039 | "_parent": { 6040 | "$ref": "AAAAAAFrIySFO9VqeYw=" 6041 | }, 6042 | "visible": false, 6043 | "fillColor": "#fff5d8", 6044 | "font": "Arial;13;0", 6045 | "left": 144, 6046 | "top": -16, 6047 | "width": 130, 6048 | "height": 13, 6049 | "text": "(from Default Values)" 6050 | }, 6051 | { 6052 | "_type": "LabelView", 6053 | "_id": "AAAAAAFrIySFO9VutIQ=", 6054 | "_parent": { 6055 | "$ref": "AAAAAAFrIySFO9VqeYw=" 6056 | }, 6057 | "visible": false, 6058 | "fillColor": "#fff5d8", 6059 | "font": "Arial;13;0", 6060 | "left": 144, 6061 | "top": -16, 6062 | "height": 13, 6063 | "horizontalAlignment": 1 6064 | } 6065 | ], 6066 | "fillColor": "#fff5d8", 6067 | "font": "Arial;13;0", 6068 | "left": 256, 6069 | "top": 240, 6070 | "width": 136.0009765625, 6071 | "height": 25, 6072 | "stereotypeLabel": { 6073 | "$ref": "AAAAAAFrIySFO9VrR3w=" 6074 | }, 6075 | "nameLabel": { 6076 | "$ref": "AAAAAAFrIySFO9VsGOo=" 6077 | }, 6078 | "namespaceLabel": { 6079 | "$ref": "AAAAAAFrIySFO9VtHBU=" 6080 | }, 6081 | "propertyLabel": { 6082 | "$ref": "AAAAAAFrIySFO9VutIQ=" 6083 | } 6084 | }, 6085 | { 6086 | "_type": "UMLAttributeCompartmentView", 6087 | "_id": "AAAAAAFrIySFO9Vvzqk=", 6088 | "_parent": { 6089 | "$ref": "AAAAAAFrIySFO9VpTus=" 6090 | }, 6091 | "model": { 6092 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6093 | }, 6094 | "subViews": [ 6095 | { 6096 | "_type": "UMLAttributeView", 6097 | "_id": "AAAAAAFrIySFO9VwLck=", 6098 | "_parent": { 6099 | "$ref": "AAAAAAFrIySFO9Vvzqk=" 6100 | }, 6101 | "model": { 6102 | "$ref": "AAAAAAFrIySFPNWDqaI=" 6103 | }, 6104 | "fillColor": "#fff5d8", 6105 | "font": "Arial;13;0", 6106 | "left": 261, 6107 | "top": 270, 6108 | "width": 126.0009765625, 6109 | "height": 13, 6110 | "text": "-name: String = 'John'", 6111 | "horizontalAlignment": 0 6112 | }, 6113 | { 6114 | "_type": "UMLAttributeView", 6115 | "_id": "AAAAAAFrIySFO9VxVu4=", 6116 | "_parent": { 6117 | "$ref": "AAAAAAFrIySFO9Vvzqk=" 6118 | }, 6119 | "model": { 6120 | "$ref": "AAAAAAFrIySFPNWEzPw=" 6121 | }, 6122 | "fillColor": "#fff5d8", 6123 | "font": "Arial;13;0", 6124 | "left": 261, 6125 | "top": 285, 6126 | "width": 126.0009765625, 6127 | "height": 13, 6128 | "text": "-email: String", 6129 | "horizontalAlignment": 0 6130 | } 6131 | ], 6132 | "fillColor": "#fff5d8", 6133 | "font": "Arial;13;0", 6134 | "left": 256, 6135 | "top": 265, 6136 | "width": 136.0009765625, 6137 | "height": 38 6138 | }, 6139 | { 6140 | "_type": "UMLOperationCompartmentView", 6141 | "_id": "AAAAAAFrIySFO9VybAk=", 6142 | "_parent": { 6143 | "$ref": "AAAAAAFrIySFO9VpTus=" 6144 | }, 6145 | "model": { 6146 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6147 | }, 6148 | "fillColor": "#fff5d8", 6149 | "font": "Arial;13;0", 6150 | "left": 256, 6151 | "top": 303, 6152 | "width": 136.0009765625, 6153 | "height": 10 6154 | }, 6155 | { 6156 | "_type": "UMLReceptionCompartmentView", 6157 | "_id": "AAAAAAFrIySFO9VzcEI=", 6158 | "_parent": { 6159 | "$ref": "AAAAAAFrIySFO9VpTus=" 6160 | }, 6161 | "model": { 6162 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6163 | }, 6164 | "visible": false, 6165 | "fillColor": "#fff5d8", 6166 | "font": "Arial;13;0", 6167 | "left": 976, 6168 | "top": 536, 6169 | "width": 10, 6170 | "height": 10 6171 | }, 6172 | { 6173 | "_type": "UMLTemplateParameterCompartmentView", 6174 | "_id": "AAAAAAFrIySFO9V0kV4=", 6175 | "_parent": { 6176 | "$ref": "AAAAAAFrIySFO9VpTus=" 6177 | }, 6178 | "model": { 6179 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6180 | }, 6181 | "visible": false, 6182 | "fillColor": "#fff5d8", 6183 | "font": "Arial;13;0", 6184 | "left": 976, 6185 | "top": 536, 6186 | "width": 10, 6187 | "height": 10 6188 | } 6189 | ], 6190 | "fillColor": "#fff5d8", 6191 | "font": "Arial;13;0", 6192 | "containerChangeable": true, 6193 | "left": 256, 6194 | "top": 240, 6195 | "width": 136.0009765625, 6196 | "height": 113, 6197 | "nameCompartment": { 6198 | "$ref": "AAAAAAFrIySFO9VqeYw=" 6199 | }, 6200 | "attributeCompartment": { 6201 | "$ref": "AAAAAAFrIySFO9Vvzqk=" 6202 | }, 6203 | "operationCompartment": { 6204 | "$ref": "AAAAAAFrIySFO9VybAk=" 6205 | }, 6206 | "receptionCompartment": { 6207 | "$ref": "AAAAAAFrIySFO9VzcEI=" 6208 | }, 6209 | "templateParameterCompartment": { 6210 | "$ref": "AAAAAAFrIySFO9V0kV4=" 6211 | } 6212 | } 6213 | ] 6214 | }, 6215 | { 6216 | "_type": "UMLClass", 6217 | "_id": "AAAAAAFrIySFPNWCrRU=", 6218 | "_parent": { 6219 | "$ref": "AAAAAAFrIySFO9Vng18=" 6220 | }, 6221 | "name": "Author", 6222 | "attributes": [ 6223 | { 6224 | "_type": "UMLAttribute", 6225 | "_id": "AAAAAAFrIySFPNWDqaI=", 6226 | "_parent": { 6227 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6228 | }, 6229 | "name": "name", 6230 | "visibility": "private", 6231 | "type": "String", 6232 | "defaultValue": "'John'" 6233 | }, 6234 | { 6235 | "_type": "UMLAttribute", 6236 | "_id": "AAAAAAFrIySFPNWEzPw=", 6237 | "_parent": { 6238 | "$ref": "AAAAAAFrIySFPNWCrRU=" 6239 | }, 6240 | "name": "email", 6241 | "visibility": "private", 6242 | "type": "String" 6243 | } 6244 | ] 6245 | } 6246 | ] 6247 | } 6248 | ], 6249 | "author": "Andrias Meisyal", 6250 | "copyright": "2017" 6251 | } --------------------------------------------------------------------------------