forked from ieg-vienna/Prefuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
85 lines (66 loc) · 4.12 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
prefuse Vienna edition README
This project is a fork of prefuse (http://prefuse.org) and maintained by the
Information Engineering Group at Vienna University of Technology, Austria
(http://ieg.ifs.tuwien.ac.at/).
We plan to do two things in this fork:
(a) We fix bugs or apply patches necessary to extend prefuse in our projects.
These changes can be reintegrated with upstream via pull requests.
(b) Occasionally we upgrade prefuse code to make it aware of "new" Java
features such as generics. These changes might stay in this fork.
----------------------------------------------------------------------
ORIGINAL README of upstream prefuse project
----------------------------------------------------------------------
prefuse README
beta release - initial release february 2006, current release 2007.10.20
--INTRO--
prefuse is a Java-based toolkit for building interactive information
visualization applications. Prefuse supports a rich set of features for data
modeling, visualization, and interaction. It provides optimized data
structures for tables, graphs, and trees, a host of layout and visual encoding
techniques, and support for animation, dynamic queries, integrated search, and
database connectivity. Prefuse is written in Java, using the Java 2D graphics
library, and is easily integrated into Java Swing applications or web applets.
Prefuse is licensed under the terms of a BSD license, and can be freely used
for both commercial and non-commercial purposes.
--STRUCTURE--
The toolkit distribution uses the following organization:
+ prefuse
|-- build Directory where compiled classes and jar files are placed
|-- data Various example data files used by the demo applications
|-- demos Demo applications and applets showing the toolkit in use
|-- doc Documentation. The Javadoc API files reside here once generated
|-- lib Third-party libraries useful with prefuse and their licenses
|-- src The source code for the prefuse toolkit
|-- test JUnit tests for the toolkit (still a bit sparse at the moment)
--REQUIREMENTS--
prefuse is written in Java 1.4, using the Java2D graphics library. To compile
the prefuse code, and to build and run prefuse applications, you'll need a
copy of the Java Development Kit (JDK) for version 1.4.2 or greater. You can
download the most recent version of the JDK from
http://java.sun.com/j2se/1.5.0/download.html.
We also recommended (though by no means is it required) that you use an
Integrated Development Environment such as Eclipse (http://eclipse.org).
Especially if you are a Java novice, it will likely make your life much easier.
--BUILDING--
prefuse uses the Ant system from the Apache Group to compile the files. Ant is
bundled with this distribution, and can be run using the "build.bat" script
(in Windows) or the "build.sh" script (in UNIX). For example, running
"build.bat usage" will provide a list of available commands, "build.bat all"
will compile the toolkit and demos into jar files, running "build.bat api"
will generate the html API documentation for the toolkit in the doc directory.
Alternatively, you can use the Eclipse integrated development environment
(available for free at http://ww.eclipse.org) to load the source files, then
Eclipse will compile the software for you. Within Eclipse, right-click the
background of the "Package Explorer" panel and choose "Import". Then select
"Existing Projects into Workspace". In resulting dialog, click the radio
button for "Select archive file" and browse for the prefuse distribution
zip file. The "prefuse" project should then appear in the area below.
Now just click the "Finish" button to import the project and build it.
Once prefuse has been loaded as a project within Eclipse, you
can then run various demos directly from within Eclipse by right-clicking the
class file for a demo (e.g., demos/prefuse.demos.GraphView.java) and
selecting "Run >> Java Application" from the menu.
--MORE--
Additional information and documentation, a help forum, a gallery of featured
prefuse applications, and more, are available online. Point your web browser at
-- http://prefuse.org --