uml

Generate UML Class Diagram from Java Project [closed]

我是研究僧i 提交于 2019-11-26 12:15:27
问题 Is there a good tool that can help to reverse engineer Java classes to UML that will show an overview of how my classes are related to each other? It doesn\'t need to decompile from JAR file because I have the sources. I know there are quite a few out there but most of those can only generate individual class. I hope there is a tool that can generate class diagram that shows an overview of how all my current classes and packages work together, so that I can analyse my current architecture

free UML sequence diagram reverse engineering eclipse plugin working out of the box - does such a thing exist? [closed]

笑着哭i 提交于 2019-11-26 12:04:08
问题 I tried (though not very comprehensively) numerous solutions including ModelGoon (only class and interaction diagrams available), ObjectAid (class diagram only), eUML free edition (quits with an ominous \"license not found\" error on first use), MoDisco (with the only option on the menu being \"browse corresponding model element\"). And also some standalone tools - ArgoUML and BOUML either dont provide this feature or at least i was not able to find it. Jsonde started only after i fixed a

Is it necessary to include the login for every usecase?

て烟熏妆下的殇ゞ 提交于 2019-11-26 11:39:58
问题 iam going to design a system that has a login facility. After login the logged user can do several things so is it needs to include login usecase by that several usecases. 回答1: In most cases, it will only clutter up your diagrams. Login is neither complex nor does it give you much added value as a use case. In your textual document that includes the use cases with description, include as a prerequisite a list of features that require a successful login. Easier to track and to test. 来源: https:

uncertainty in developing a database model

戏子无情 提交于 2019-11-26 11:39:07
问题 I\'m trying to develop a database model for candidate, their registered exams and result of the exams when its being taken. This is what I\'ve done so far. however im unsure if am on the right track especially from the examination table to the examination result table. how easy will it be to right write an insert sql code for examinationresult population for a particular candidate the examination types are categorised into science, art and social science. they all have 4 components each 来源:

association owned by classifier and association owned by relationship in UML

不想你离开。 提交于 2019-11-26 11:38:39
问题 7.3.3 Association(from kernel) ,page 36,UML superstructure ,v2.4.1: an association either owned by classifier or by relationship. Is there a real-life example in UML about association owned by classifier and association owned by relationship? 回答1: Chriss I hope this simple example helps. Guess you have a Java class public class A { private B b; ... } In UML you would model this relationship as an association from A to B: A -> B with the following modeling elements: Class B Class A + Property

Questions about UML class diagrams?

心已入冬 提交于 2019-11-26 11:37:03
问题 Hello I have a few questions about UML class diagrams any help will be appreciated 1) How do you show pointers in attributes? 2) Whats multiplicity? 3) What direction should the composition arrows be? 4) How do you put enums? 回答1: According to the current UML standard 2.4.1 and the next one 2.5 (it differs almost only in more simple documentation): Pointers/references should be shown as arrow with small black circle (dot) at the referenced end. If it is not pointer that the object has as an

Understanding Diagrams [closed]

拈花ヽ惹草 提交于 2019-11-26 11:25:49
问题 I want to learn about Design Patterns and everywhere I see diagrams like this: Is it UML or something else? I just need a quick reference to learn what do each of different lines mean? which one is inheritance, etc.. 回答1: 1 Yes it is UML. You can read more (with examples) about class diagrams and other UML diagrams e.g. at http://www.uml-diagrams.org/class-diagrams-overview.html 2 Although it is possible to Google out and print and pin up on your notice board some " UML cheat sheet " or " UML

PowerDesigner与UML建模应用

我的未来我决定 提交于 2019-11-26 11:01:45
一、 PD 简介 PowerDesigner 是一个集所有现代建模技术于一身的完整工具,它集成了强有力的业务建模技术、传统的数据库分析和实现,以及UML对象建模。通过了元数据的管理、冲突分析和真正的企业知识库等功能。 利用它可以制作数据流程图、概念数据模型、物理数据模型 帮助企业 快速高效 地进行企业应用 系统构建 及再工程(Re-engineer)。 IT专业人员可以利用它来有效开发各种解决方案,从定义业务需求到分析和设计,以至集成所有现代 RDBMS 和Java、.NET、PowerBuilder和 Web Services的开发等。 PDM定义了模型的物理实现细节。例如,所选RDBMS的数据类型特征、索引定义、视图定义、存储过程定义、触发器定义等。 二、数据完整性的分类 实体完整性 主键约束 唯一键约束 域的完整性 非空约束 检查约束 默认值约束 引用完整性: 外键约束 定义索引 定义视图 定义存储过程 三、创建PDM 1、约束的创建 2、定义视图与索引 3、定义存储过程 四、数据库的操作 连接数据库 (ODBC方式) 产生数据库或者脚本 (Sql 语句方式与ODBC方式) 同步数据库 (ODBC方式) 产生脚本数据 执行sql脚本 选择Database-> Configure Data Connections 选择Database-> Connect 选择数据源

Generating UML from C++ code? [closed]

两盒软妹~` 提交于 2019-11-26 10:06:59
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Is there a tool that can parse C++ files within a project and generate UML from it? 回答1: Here are a few options: Step-by-Step Guide to Reverse Engineering Code into UML Diagrams with Microsoft Visio 2000 - http://msdn.microsoft.com/en-us/library/aa140255(office.10).aspx BoUML - http://bouml.fr/features.html

UML diagram for dependency between systems

笑着哭i 提交于 2019-11-26 09:55:40
问题 Which UML diagram is the best for showing dependency between our IT system and other external IT systems? For example I would like to show on diagram: system A gets data from system B system B can call some functionality from system A I\'m wondering between component diagram and sequence diagram. What do you think? 回答1: Components definitelly, and dependencies. Dependency does not go in direction of the data-flow, but from the component that "knows" other component (invokes something from it,