Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 49.594.716 Times

Java Line Graph freeware
Filter: All | Freeware | Demo
 

Java Line Graph

< 1 2 3 4 5 
Added: April 20, 2010 | Visits: 1.540

Java Preferences Tool Java Preferences Tool is a simple utility for Java developers and testers, in the spirit of Microsofts Registry Editor. Java Preferences Tool allows you to view, edit, compare, and search Java preferences. The program has traditional explorer-style interface, with tree view of current...



Platforms: *nix

License: Freeware Download (123): Java Preferences Tool Download

Added: September 04, 2010 | Visits: 2.380

Open Java Console Open Java Console is an extension which provides the ability to open the Java Console in Firefox. This extension provides an option on the Tools menu that opens the Java Console, and a toolbar button in the JavaScript Console that also allows the console to be opened. The extension also adds...





Platforms: *nix

License: Freeware Size: 29.7 KB Download (164): Open Java Console Download

Added: August 10, 2010 | Visits: 1.508

Chart::Graph Chart::Graph is a Perl extension for a front-end to gnuplot, XRT, and Xmgrace. SYNOPSIS # EXAMPLE: gnuplot #make sure to include Chart::Graph use Chart::Graph:Gnuplot qw(gnuplot); gnuplot(%global_options, [%data_set_options, @matrix], [%data_set_options, @x_column, @y_column],...


Platforms: *nix

License: Freeware Size: 245.76 KB Download (105): Chart::Graph Download

Added: June 10, 2010 | Visits: 1.368

Useful Java Application Components UJAC provides a collection of JAVA components which may be useful in some projects. Each component is designed for easy use, easy integration into existing projects, extensibility and last but not least efficiency. Whats New in This Release: Chart Module: - Moved common types into the...


Platforms: *nix

License: Freeware Size: 4.1 MB Download (98): Useful Java Application Components Download

Added: June 08, 2010 | Visits: 1.460

Simple Logging Facade for Java 1.1.0 Simple Logging Facade for Java also know as SLF4J is intended to serve as a simple facade for various logging APIs, allowing to the end-user to plug in the desired implementation at deployment time. Logging API implementations can either choose to implement the the SLF4J interfaces directly,...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (132): Simple Logging Facade for Java 1.1.0 Download

Added: November 07, 2010 | Visits: 1.906

PostScript::Graph::Bar PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file. SYNOPSIS Simplest Take labels and values from a csv file and output as a bar chart on a postscript file. use PostScript::Graph::Bar; my $bar = new PostScript::Graph::Bar(); $bar->build_chart("survey.csv");...


Platforms: *nix

License: Freeware Size: 55.3 KB Download (121): PostScript::Graph::Bar Download

Added: January 26, 2010 | Visits: 1.192

PostScript::Graph::Style SYNOPSIS Simplest Each time a new object is created the default style will be slightly different. use PostScript::File; use PostScript::Graph::Style; my $file = new PostScript::File(); my $seq = new PostScript::Graph::Sequence(); while (...) { my $style = new...


Platforms: *nix

License: Freeware Size: 55.3 KB Download (122): PostScript::Graph::Style Download

Added: February 05, 2010 | Visits: 2.245

C++ Command Line Library C++ Command Line Library provides a framework for handling command line options and arguments. Either variables (of any type) are set to values given at the command line. Or user defined functions are called with arguments (of any type) read from the command line. It was developed and tested...


Platforms: *nix

License: Freeware Size: 849.92 KB Download (136): C++ Command Line Library Download

Added: May 01, 2010 | Visits: 2.318

Ganymed SSH-2 for Java Build Ganymed SSH2 for Java is a library which implements the SSH-2 protocol in pure Java (tested on J2SE 1.4.2 and 5.0). Ganymed SSH2 for Java allows one to connect to SSH servers from within Java programs. It supports SSH sessions (remote command execution and shell access), local and remote port...


Platforms: *nix

License: Freeware Size: 471.04 KB Download (139): Ganymed SSH-2 for Java Build Download

Added: July 06, 2010 | Visits: 1.250

Java RAM Interpreter JAM - Java RAM Interpreter simulates Random Access Machines (RAMs). A RAM is a theoretical computer model with an unlimited number of registers of unlimited size and a programming language similar to Assembly. It is used in the book "Theoretische Informatik" by Klaus W. Wagner. Many things...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (108): Java RAM Interpreter Download

Added: May 02, 2010 | Visits: 1.188

Parse::Java Parse::Java is a Perl module that acts like a parser for Java code. SYNOPSIS use Parse::Java; my $ast = Parse::Java->parse_file(MyClass.java); Parse::Java parses Java code into an Abstract Syntax Tree which can be used for many things like writing compilers and stuff. As this module is...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (108): Parse::Java Download

Added: March 21, 2010 | Visits: 1.084

Path::Graph Path::Graph is a Perl module created to generate paths from hash graph. SYNOPSIS Code 1 #!usr/bin/perl my %graph = ( A => {B=>1,C=>4}, B => {A=>1,C=>2}, C => {A=>4,B=>2} ); use Paths::Graph; my $g = Paths::Graph->new(-origin=>"A",-destiny=>"C",-graph=>%graph); my @paths =...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (114): Path::Graph Download

Added: October 12, 2010 | Visits: 1.475

Xgrid Agent for Java Xgrid Agent for Java is an agent for Apples Xgrid clustering protocol written entirely in Java. This makes multiple platform Xgrid clusters possible. Usage: usage: java -jar xgridagent.jar -r|host name mhz -r will resolve the controller via bonjour host is the address or hostname on the...


Platforms: *nix

License: Freeware Size: 2.2 MB Download (108): Xgrid Agent for Java Download

Added: June 08, 2010 | Visits: 1.787

BNF for Java BNF for Java project is a parser/generator, or compiler-compiler. The parser reads your input text, or "terminals", specified by your BNF syntax. The parser features indefinate look-ahead and back-track. As the grammar parses your file, it builds a parse-tree which carries the content in the...


Platforms: *nix

License: Freeware Download (205): BNF for Java Download

Added: March 03, 2010 | Visits: 1.333

Boost::Graph Boost::Graph is a Perl interface to the Boost-Graph C++ libraries. SYNOPSIS use Boost::Graph; # Create an empty instance of a Graph my $graph = new Boost::Graph(directed=>0, net_name=>Graph Name, net_id=>1000); # add edges $graph->add_edge(node1=>a, node2=>b, weight=>1.1, edge=>edge...


Platforms: *nix

License: Freeware Size: 2.4 MB Download (182): Boost::Graph Download

Added: May 19, 2010 | Visits: 1.255

Java::Import::Design Java::Import::Design is the design of the Java::Import Module. MOTIVATIONS The original motivation for writing this module came out of a project I was working on during my previous employment. We had built a system in which a major part was implimented using EJBs on a J2EE server. In...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (89): Java::Import::Design Download

Added: March 07, 2010 | Visits: 1.004

Java::Import Java::Import is Perl module to use Java classes in Perl. SYNOPSIS use Java::Import qw( some.package.SomeClass ); my $instance = new some.package.SomeClass(); $instance->someMethod(); my $ret_val = some::package::SomeClass::someStaticMethod(); $ret_val->someMethod(); $ret_val2 =...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (92): Java::Import Download

Added: September 17, 2010 | Visits: 1.022

DGS Graph DGS Graph was created to provide an easy to install graphing script, capable of generating graphs for web presentation..


Platforms: *nix

License: Freeware Size: 24.58 KB Download (104): DGS Graph Download

Added: May 06, 2010 | Visits: 1.998

Java RSS Ticker 1.8.7 Beta Java RSS Ticker is a Java RSS and Atom Ticker/Aggregator/Reader. I had checked out a number of tickers that look pretty as they scroll etc., but took a lot of CPU cycles and cost money. I wanted a simple, OS independent, ticker so I wrote this one in Java..


Platforms: *nix

License: Freeware Size: 215.04 KB Download (197): Java RSS Ticker 1.8.7 Beta Download

Added: April 10, 2010 | Visits: 1.632

Command Line WRAPper Command Line WRAPper is a tool that provides an easy way to build and run commands from input lines, avoiding the use of shell script. It is similar to xargs. clwrap can make great things with the locate command, and is low resource intensive. It can also do some not-quite-fun works like...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (95): Command Line WRAPper Download

< 1 2 3 4 5