Main > Free Download Search >

Free uml 2.1 software for linux

uml 2.1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 692
JGraphpad 5.6.3

JGraphpad 5.6.3


JGraphpad is a diagram editor. more>>
JGraphpad is a powerful, free diagram editor based on JGraph. It is currently available in English, French and German. With JGraphpad, you can create flow charts, maps, UML diagrams, and many other diagrams.
JGraphpad is provided as an example for the JGraph Swing component. Check out the JGraphpad applet and Web Start version.
JGraphpad is a versatile product that may be used to display and edit any type of diagram in the following fields:
- Knowledge Visualization
- Business Diagramming
- Software Engineering
- Monitoring and Configuration
- Transport Networks
- Workflow Systems
Main features:
- Supported Languages: English, French, German, Spanish, Japanese, Indonesian, Thai, Portuguese
- Flexible configuration, enable/disable features, toolbar buttons, add custom commands
- Programmable toolbar, GUI, and features (create your own toolbar buttons)
- Supports a wide range of platforms (Windows, Linux, Mac, Solaris)
- Copy and paste or drag and drop to and from Java and native applications
- Import/Export Text files, GXL, GIF, JPG, PNG, EPS, HTML Image maps, and GraphViz Dot
- Object library with flexible creation and management
- Shortest path and "spanning tree" selection
- 8 Different Automatic layouts
- Overview with Panning and Zoom
- Command History
- Printing and much more...
Enhancements:
- The release now compiles with JGraph 5.6.3, changing the use of graph references in various renderers.
- Some unused code was removed and various Javadocs were cleaned up.
<<less
Download (1.7MB)
Added: 2005-08-09 License: GPL (GNU General Public License) Price:
2745 downloads
Dia 0.96.1

Dia 0.96.1


Dia is designed to be much like the commercial Windows program Visio. more>>
Dia is designed to be much like the commercial Windows program Visio. It can be used to draw many different kinds of diagrams.

Dia project currently has special objects to help draw entity relationship diagrams, UML diagrams, network diagrams, flowcharts, and simple circuits. It is also possible to add support for new shapes by writing simple XML files, using a subset of SVG to draw the shape.

It can load and save diagrams to a custom XML format (gzipped by default, to save space), can export diagrams to EPS or SVG formats and can print diagrams (including ones that span multiple pages).

<<less
Download (6.2MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
1241 downloads
UMMF::UML::MetaMetaModel 1.02

UMMF::UML::MetaMetaModel 1.02


UMMF::UML::MetaMetaModel is an implementation of the UML Meta-Meta-Model (M3). more>>
UMMF::UML::MetaMetaModel is an implementation of the UML Meta-Meta-Model (M3).

SYNOPSIS

use UMMF::UML::MetaMetaModel;
my $factory = UMMF::UML::MetaMetaModel->factory;
my $model = $factory->create(Model);
$factory->create(Class, name => Foo, namespace => $model);
...

This package implements a meta-meta-model (M3) for generating the UML metamodel (M2).

UMMF::UML::MetaMetaModel is not an implementation of the MOF; It is actually a subset of the 1.5 Meta-model, as described in UML Spec. 1.5., p.2-13, but with a flattened package namespace.

It is the "Backbone" for generating the meta-model.

The UML 1.5 Meta-model is described in UMMF::UML::MetaModel package, in the ad-hoc language imported by UMMF::UML::Import::MetaMetaModel.

This meta-model is then used to generate the Perl (or Java) code for the classes in UMMF::UML::MetaModel::*.

The same exporters and importers can be used to process M* layers.

Thus, one description of the meta-model can generate multiple implementations.

<<less
Download (0.67MB)
Added: 2007-06-14 License: Perl Artistic License Price:
865 downloads
UML::Sequence 0.07

UML::Sequence 0.07


UML::Sequence is a Perl module to render UML sequence diagrams, often by running the code. more>>
UML::Sequence is a Perl module to render UML sequence diagrams, often by running the code.

SYNOPSIS

use UML::Sequence;

my $tree = UML::Sequence->new(@methods, @outline, &parse_method);
print $tree->build_xml_sequence(Title);

To use this package, or see how to use it, see genericseq.pl and seq2svg.pl.
This class helps produce UML sequence diagrams. build_xml_sequence returns a string (suitable for printing to a file) which the seq2svg.pl script converts into svg.

To control the appearance of the sequence diagram, pass to the constructor:
1 a reference to an array containing the signatures you want to hear about or a reference to a hash whose keys are the signatures you want 2 a reference to an array containing the lines in the outline of calls 3 a reference to a sub which takes signatures and returns class and method names

To build the array references and supply the code reference consult UML::Sequence::SimpleSeq, UML::Sequence::JavaSeq, or UML::Sequence::PerlSeq. To see one way to call these look in the supplied genericseq script.

<<less
Download (0.12MB)
Added: 2007-04-23 License: Perl Artistic License Price:
916 downloads
Visual Paradigm for UML 6.1 (Community Edition)

Visual Paradigm for UML 6.1 (Community Edition)


Visual Paradigm for UML is a powerful, easy-to-use UML modelling and CASE tool. more>> <<less
Download (85.9MB)
Added: 2007-08-05 License: Free for non-commercial use Price:
544 downloads
 
Other version of Visual Paradigm for UML
Visual Paradigm for UML (CE - Linux) 2.2Visual Paradigm for UML is an ALL-IN-ONE Visual Development Platform. VP-UML supports the full development life cycle, the latest UML notation for visual modeling
License:Freeware
Download (100.00MB)
203 downloads
Added: 2009-04-07
UML::State 0.02

UML::State 0.02


UML::State is an object oriented module which draws simple state diagrams. more>>
UML::State is an object oriented module which draws simple state diagrams.

SYNOPSIS

use UML::State;

my $diagram = UML::State->new(
$node_array,
$start_list,
$accept_list,
$edges
);

# You may change these defaults (doing so may even work):
$UML::State::ROW_SPACING = 75; # all numbers are in pixels
$UML::State::LEFT_MARGIN = 20;
$UML::State::WIDTH = 800;
$UML::State::HEIGHT = 800;

print $diagram->draw();

ABSTRACT

Are you tired of pointing and clicking to make simple diagrams? Do your wrists hurt thinking about making the pretty UML your boss likes so well? Consider using UML::State and UML::Sequence to make your life easier.

UML::State together with drawstate.pl allows you to easily generate state diagrams. You enter them in something like a cross between ASCII art and school room algebra. They come out looking like something from a drawing program like Visio. See drawstate.pl in the distribution for details about the input format and the samples directory for some examples of input and output.

You will probably use this class by running drawstate.pl or drawstatexml.pl which are included in the distribution. But you can use this package directly to gain control over the appearance of your pictures.

The two methods you need are new and draw (see below). If you want, you may change the dimensions by setting the package global variables as shown in the SYNOPSIS. Obviously, no error checking is done, so be careful to use reasonable values (positive numbers are good). All numbers are in pixels (sorry by Beziers in SVG seem to require pixels). I have not tried changing the numbers, so I dont have any idea if doing so makes reasonable changes to the output.

<<less
Download (0.054MB)
Added: 2007-04-23 License: Perl Artistic License Price:
915 downloads
Umbrello UML Modeller 1.5.71

Umbrello UML Modeller 1.5.71


Umbrello UML Modeller is a Unified Modelling Language diagram programme for KDE. more>>
Umbrello UML Modeller is a Unified Modelling Language diagram programme for KDE.
Umbrello UML Modeller allows you to create diagrams of software and other systems in a standard format.
Our handbook gives a good introduction to Umbrello and UML modelling.
Enhancements:
- Bugs/wishes from http://bugs.kde.org:
- Preprocessor keywords ignored which causes endless loop in code import (119125)
- Code generator for D language (124805)
- Unstable saves and loads, class names become dirty (145709)
- Crash on deleting class in list view (145762)
- Class attribute documentation not generated for python (145916)
- Python code generator does not wrap lines properly (145918)
- Attribute documentation not generated for Export to XHTML (145972)
- Crash when moving a class in a Java UML diagram (146058)
- Arrowheads are not shown (146064)
- Crash when creating a class that refers to more than one other classes/datatypes (146367)
<<less
Download (2.3MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
886 downloads
Visual Paradigm for UML (CE) for Linux 6.1

Visual Paradigm for UML (CE) for Linux 6.1


UML CASE tool - UML diagrams, use case modeling, reverse engineering and more... more>> Visual Paradigm for UML (VP-UML) is a powerful, easy-to-use UML modeling tool that supports full software lifecycle - analysis, design, coding, testing and deployment. This CASE tool helps you build quality applications faster, better and cheaper. You can draw UML diagrams, generate code from class diagrams and vice versa, and generate UML documentation. This UML CASE tool also provides plenty UML resources - UML demos, UML tutorials, and UML sample projects.
VP-UML Features:
+Supporting the latest UML notation (use case diagram, collaboration diagram, sequence diagram, class diagram/object diagram/package diagram, state diagram, activity diagram, component diagram, deployment diagram)
+OO analysis (OOA), OO design (OOD) support
+Textual analysis for identifying candidate use cases, classes, flow of events...
+CRC Card for finding objects
+Use case modeling (use case description...)
+Business Workflow diagram
+Round-trip engineering
+Code Generation - diagram to code, model to code, generate code (UML to code, UML model to Java)
+Reverse engineering - code to diagram, code to model (Java to UML diagram, Java to UML models)
+Instant Reverse for Java, C++, Dot NET dll/exe, XML, CORBA IDL
+Automatic synchronization between diagrams and source code
+Report generator for generating documentation to PDF/HTML
+Automatic diagram layout - rearrange shapes and connectors in UML diagrams in different elegant styles
+Export XMI/Import XMI
+Import Rational Rose mdl file
+MS Visio Integration - drawing UML diagrams with your own shapes by using Visio stencils
+Export diagrams to SVG, PNG, JPG
+Plugin and template
+Multilingual support
+More...
Other UML Plugins/UML Modeling Tools:
Windows Platform:
+SDE for Microsoft Visual Studio .NET
Java Platform (Linux/Mac OS X/Windows):
+SDE for Oracle JDeveloper
+SDE for IBM WebSphere (WSAD)
+SDE for Borland JBuilder
+SDE for IntelliJ IDEA
+SDE for Eclipse
+SDE for NetBeans
+SDE for Sun ONE
+More SDE...
<<less
Download (114.27MB)
Added: 2009-04-09 License: Freeware Price: Free
201 downloads
UML::Sequence::JavaSeq 0.07

UML::Sequence::JavaSeq 0.07


UML::Sequence::JavaSeq is a Perl module for use with genericseq.pl script, works on compiled Java programs. more>>
UML::Sequence::JavaSeq is a Perl module for use with genericseq.pl script, works on compiled Java programs.

SYNOPSIS

genericseq.pl UML::Sequence::JavaSeq Hello.methods Hello > Hello.xml
seq2svg.pl Hello.xml > Hello.svg

OR

genericseq.pl UML::Sequence::JavaSeq Hello.methods Hello | seq2svg.pl > Hello.svg

This file depends on UML::Sequence::SimpleSeq and a Java tool called Seq.java. The later produces an outline of the calls to methods named in Hello.methods. The former provides methods UML::Sequence needs to produce an xml sequence. Look in the provided Hello.methods to see what options you have for controlling output.

For this class to work, you must have Seq.class (and its friends) and tools.jar (the one containing the the jpda) in your class path. Your jpda must be happy. (The jpda is the Java Platform Debugger Architecture. It ships with java 1.3.)

grab_outline_text

Call this method through the class name with the method file, the class you want to sequence, and any arguments that classs main method needs. Returns an outline you can pass to UML::Sequence::SimpleSeq->grab_methods and to the UML::Sequence constructor.

<<less
Download (0.12MB)
Added: 2007-06-05 License: Perl Artistic License Price:
872 downloads
OpenSwarm 0.6.1

OpenSwarm 0.6.1


OpenSwarm processes your UML 2.0 model to generate a Python server application. more>>
OpenSwarm processes your UML 2.0 model to generate a Python server application.

It provides easily customizable business logic based on Python and PostgreSQL. As required by the MDA standard, OpenSwarm uses UML (version 2.0 stored as XMI 2.1).
<<less
Download (0.078MB)
Added: 2006-12-12 License: GPL (GNU General Public License) Price:
1053 downloads
Jupe 0.0.8

Jupe 0.0.8


Jupe is a UML Plugin for Eclipse. more>>
Jupe is a UML Plugin for Eclipse. Jupe project aims to provide support for the creation of UML class diagrams, code generation and reverse engineering. Jupe is based on the GEF and UML2 frameworks. Jupe is published as alpha version, so please be aware that it wont fit daily-use purposes.
Main features:
- Jupe perspective providing a class diagram editor
- creation of UML diagrams with the mouse
- items can be changed by clicking on them or using a property table
- creation of UML diagrams based on the source code (reverse engineering)
- load and save diagrams
- export of diagrams to XMI
<<less
Download (0.85MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1148 downloads
UDoc 1.005

UDoc 1.005


UDoc is a tool to visualize some Java classes. more>>
UDoc is a tool to visualize some Java classes. UDoc dynamically produces some UML-like diagrams from various sources (Javadoc, Java sources, Java binaries).

The diagrams contain a lot of information, and you can easily navigate from classes to classes.

<<less
Download (0.48MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
957 downloads
pyswarm 0.7.1

pyswarm 0.7.1


pyswarm project (formerly known as OpenSwarm) processes your UML 2.0 model to generate a Python server application. more>>
pyswarm project (formerly known as OpenSwarm) processes your UML 2.0 model to generate a Python server application.
Enhancements:
- This is the seventh release of pyswarm.
- The SDK of this release doesnt need any program additional to Python 2.4 or 2.5 and will be significantly faster at generating pyswarm applications from UML models stored in XMI files.
<<less
Download (0.22MB)
Added: 2007-05-03 License: GPL (GNU General Public License) Price:
904 downloads
SDE for JDeveloper (CE) for Linux 1.1 Community

SDE for JDeveloper (CE) for Linux 1.1 Community


UML Plugin for JDeveloper: UML diagrams, Rational Rose, XMI import/export,... more>> SDE for JDeveloper is a UML CASE tool/plug-in tightly integrated with JDeveloper. This UML CASE tool supports full software development lifecycle - analysis, design, implementation, testing and deployment. This UML tool helps you build quality applications faster, better and cheaper. You can draw all types of UML diagrams in JDeveloper, generate Java code, reverse engineer Java code to class diagrams and generate documentation.
SDE Features:
+the latest UML support (use case diagram, sequence diagram, collaboration diagram, object diagram, class diagram, statechart/state diagram, activity diagram, component diagram, deployment diagram)
+Use case modeling (use case description, scheduling...)
+Textual analysis for identifying candidate classes, use cases, actors, flow of events...
+Business Workflow diagram
+CRC Card diagram
+Reverse engineering - code to model, code to diagram (Java to UML models, Java to UML diagram)
+Instant Reverse for Java, XML, XML Schema, C++, Dot NET dll/exe, CORBA IDL
+Code Generation - generate code, model to code, diagram to code (UML to code, UML model to Java)
+Incremental round-trip engineering
+Automatic synchronization between source code and diagrams
+Plug-in and template
+Automatic diagram layout - rearrange classes and connectors in UML diagrams in different styles
+Import/export XMI
+Import Rational Rose
+Export diagrams to SVG, PNG, JPG
+Microsoft Visio Integration - draw UML diagrams with MS Visio shapes
+Report generator for generating UML documentation to HTML or PDF
+Version control
+Multilingual support
+More...
Other UML Modeling Tools / UML Plug-ins:
Java Platform (Linux/Windows/Mac OS X):
+SDE for Oracle JDeveloper
+SDE for IBM WebSphere (WSAD)
+SDE for Borland JBuilder
+SDE for IntelliJ IDEA
+SDE for Eclipse
+SDE for NetBeans
+SDE for Sun ONE
Windows Platform:
+SDE for Microsoft Visual Studio .NET
+More SDE...
<<less
Download (68.37MB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
Medoosa 1.2

Medoosa 1.2


Medoosa is an application which creates UML class diagrams from C++ sources. more>>
Medoosa is an application which creates UML class diagrams from C++ sources.

Corrections can be made interactively in a diagram editor (Dia) and are fed back into the source as Javadoc-style comments.

At this time, the layout must still be done by hand. Some code is already present to produce the layout with Graphviz.

<<less
Download (1.7MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1116 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5