SDE for NetBeans Community Edition 4.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SDE for NetBeans Community Edition 4.2 (Default branch)
# 1  
Old 02-15-2008
SDE for NetBeans Community Edition 4.2 (Default branch)

Image SDE for NetBeans is a UML modeling environment tightly integrated with NetBeans. It lets you draw all types of UML diagrams (use case diagram, class diagram, sequence diagram, activity diagram, etc.) in NetBeans, reverse source code (Java, C++, XML, XML Schema, CORBA IDL, etc.) to UML models, and generate Java source from UML diagrams. It features a Rational Rose importer, an XMI importer, HTML/PDF documentation generators, and plug-in and template support. License: Free for non-commercial use Changes:
This release has a number of new features which include creation of translated copies of a model through the use of Nicknamer, support for defining Requirement types and displaying in Tabular view, increased effects for publisher published Web content, more robust annotation support via Callout and Freehand shape, and the ability to copy, move, and reorder class and entity members through drag and drop. In addition, Model Transitor was introduced for establishing transition and support traceability between models.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Infrastructure Monitoring

GroundWork Monitor Community Edition 5.3.0 (GA) (Default branch)

http://c.fsdn.com/fm/screenshots/63584_thumb.jpgGroundWork Monitor Community Edition can give you insight into your computing infrastructure, allowing you to see the current and historical states of all your computers: servers, desktops, and laptops, all of your network devices, all of your... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
Autodia::Diagram(3pm)					User Contributed Perl Documentation				     Autodia::Diagram(3pm)

NAME
Autodia::Diagram - Class to hold a collection of objects representing parts of a Dia Diagram. SYNOPSIS
use Autodia::Diagram; my $Diagram = Autodia::Diagram->new; Description Diagram is an object that contains a collection of diagram elements and the logic to generate the diagram layout as well as to output the diagram itself in Dia's XML format using template toolkit. METHODS
Class Methods new - constructor method creates and returns an unpopulated diagram object. Object methods To get a collection of a objects of a certain type you use the method of the same name. ie $Diagram->Classes() returns an array of 'class' objects. The methods available are Classes(), Components(), Superclasses(), Inheritances(), Relations(), and Dependancies(); These are all called in the template to get the collections of objects to loop through. To add an object to the diagram. You call the add_<object type> method, for example $Diagram->add_class($class_name), passing the name of the object in the case of Class, Superclass and Component but not Inheritance or Dependancy which have their names generated automagically. Objects are not removed, they can only be superceded by another object; Component can be superceded by Superclass which can superceded by Class. This is handled by the object itself rather than the diagram. Accessing and manipulating the Diagram Elements are added to the Diagram through the add_<elementname> method (ie add_classes() ). Collections of elements are retrieved through the <elementname> method (ie Classes() ). The diagram is laid out and output to a file using the export_xml() method. See Also Autodia Autodia::Diagram::Object Autodia::Diagram::Class Autodia::Diagram::Superclass Autodia::Diagram::Component Autodia::Diagram::Inheritance Autodia::Diagram::Relation Autodia::Diagram::Dependancy AUTHOR
Aaron Trevena, <aaron.trevena@gmail.com> COPYRIGHT AND LICENSE
Copyright (C) 2004 by Aaron Trevena This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available. perl v5.12.4 2009-10-24 Autodia::Diagram(3pm)