Main > Free Download Search >

Free java 7.61 software for linux

java 7.61

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2152
Java::SJ 0.01

Java::SJ 0.01


Java::SJ is a highly configurable Java program startup system. more>>
Java::SJ is a highly configurable Java program startup system.

SYNOPSIS

sj myprogram.sj

This module allows you to very easily run Java services that rely on complex configuration at the VM and library level. It also provides an easy way of specifying a sensible default configuration that can be overridden by specific applications should they need to.

The system is configured on a machine and application level. The system looks for configuration files in a set of well-known locations, currently these are:

/etc/sj.conf
.sj.conf in users HOME directory
.sj.conf in current working directory

Every application is defined in terms of a similar configuration file. The configuration system has been designed so that it is easy to write a simple and minimal configuration file for a program.
Provided the system has a fairly complete configuration associated with it then an application configuration file need only have the class name to be executed.

<<less
Download (0.018MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1138 downloads
Parse::Java 0.01

Parse::Java 0.01


Parse::Java is a Perl module that acts like a parser for Java code. more>>
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 currently under development it isnt yet able to parse much Java. Whats in the t/*.t basically works but not much else.

The lexer should also more or less work fine except expansion of unicode escapes uNNNN.

INTERFACE

This module uses an object-oriented interface.

CLASS METHODS

parse_file ( $path )

Parses the contents of the file $path. Returns an AST representing the code.

parse_string

Parses the source in $string. Returns an AST representing the code.

detokenize ( $ast )

Walks the AST and replaces all Parse::Java::Token-objects with their stringified value.

INSTANCE METHODS

_set_input ( $source )

Sets the input to the lexer.

_next_token

Returns a list with the next token from the stream and its value.

<<less
Download (0.018MB)
Added: 2007-01-16 License: Perl Artistic License Price:
1012 downloads
Java::Swing 0.13

Java::Swing 0.13


Java::Swing provides a Perl extension providing direct access to the Java Swing API. more>>
Java::Swing provides a Perl extension providing direct access to the Java Swing API.

Though you can write a Java program which is driven by Perl, some people may prefer to keep their Perl pure. This package lets you do that in manner similar to the way Perl/Tk and Gtk2:: provide access to their underlying libraries. This lets us code in our favorite language, while using the graphical interface capabilities of Java Swing.

Once you use Java::Swing, you can refer to javax.swing classes by their class name alone as if it name were a Perl package name. All class methods, including constructors, can be called as normal through this Perl package name.

But, if you like, you may also use Java::Swing named attribute construction, as shown for the second JTextField above. Simply supply a hash reference whose keys are attributes of the class with the proper values. Your object will be constructed by calling the empty argument constructor. Then the attribute values will be supplied by calling set accessors. So columns => 10 will translate into setColumns(10).

As of version 0.12, you may add an Object attribute to the constructor hash. Then Java::Swing will call the constructor on the underlying class which expects it, and then call set accessors for any additional attributes.

<<less
Download (0.033MB)
Added: 2007-03-29 License: Perl Artistic License Price:
943 downloads
SCAP-Java 0.9

SCAP-Java 0.9


SCAP-Java is an automatic thematical mapping software. more>>
SCAP-Java is an automatic thematical mapping software. It draws colors or symbol maps from your data, with step by step procedures coherent with the cartography semiology methodology.

SCAP-Java was developed for education and map production, with an emphasis on usability: its easy to create a PDF map from spreadsheet data and geospatial datasets (mif/mid).
<<less
Download (4.3MB)
Added: 2006-08-17 License: CeCILL (CeCILL Free Software License Agreement) Price:
1172 downloads
libeds-java 0.5.1

libeds-java 0.5.1


Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. more>>
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. Java-GNOME is implemented as a JNI layer that delegates the Java calls out to the underlying C library.

Installation:

See the INSTALL file in each module for instruction on how to build the binding from source.

How to report bugs:

You can submit bugs at the following url: http://bugzilla.gnome.org/enter_bug.cgi?product=java-gnome

Please indicate what version of the library you were using when you encountered the bug.

Please include the following information in your bug report:

1) The type of system and version of the operating system you are using.
2) The version of GTK/GNOME you are using.
3) A detailed description of the bug. If the bug is reporducable, please indicate haw to reproduce.

You can also submit enhancement requests at the same location.
<<less
Download (0.33MB)
Added: 2006-08-14 License: LGPL (GNU Lesser General Public License) Price:
1168 downloads
Java::JCR 0.08

Java::JCR 0.08


Java::JCR is a module to use JSR 170 (JCR) repositories from Perl. more>>
Java::JCR is a module to use JSR 170 (JCR) repositories from Perl.

SYNOPSIS

use Java::JCR;
use Java::JCR::Jackrabbit;

my $repository = Java::JCR::Jackrabbit->new;
my $session = $repository->login(
Java::JCR::SimpleCredentials->new(username, password)
);

my $root = $session->get_root_node;
my $node = $root->add_node(foo, nt:unstructured);
$node->set_property(bar, 10);
$node->set_property(baz, blah);
$node->set_property(qux, 4.8);
$session->save;

The JSR 170 specification describes a Java-based API for access hierarchical databases. This is generally referred to by the abbreviation JCR, which is an abbreviation for Content Repository API for Java Technology Specification.

The biggest OSS implementation, as of this writing, is Jackrabbit, which is a project at the Apache Software Foundation, http://jackrabbit.apache.org/. Currently, this library allows Perl programmers to develop using the JCR and Jackrabbit, though, theres no reason why connectors cant be written for other implementations, such as Jaceira, CRX, eXoplatform, etc. The JCR library wrappers included are not at all specific to Jackrabbit.

<<less
Download (0.047MB)
Added: 2007-06-04 License: Perl Artistic License Price:
875 downloads
Java Games 1.0

Java Games 1.0


Java Games is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser. more>>
Java Games project is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser.

Currently the collection contains four games: XO World (similar to tic-tac-toe, but with lines of 5 on a 10x10 board); 100 Mack (guess the random combination of 4 images out of a set of six); Memory (flip 2 plates at a time to find matching pairs); and Tetris.
<<less
Download (0.13MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
985 downloads
libvte-java 0.12.3

libvte-java 0.12.3


Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. more>>
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java.

libvte-java is implemented as a JNI layer that delegates the Java calls out to the underlying C library.

Installation:

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (0.33MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1021 downloads
libgtk-java 2.9.3

libgtk-java 2.9.3


Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. more>>
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java.

libgtk-java is implemented as a JNI layer that delegates the Java calls out to the underlying C library.

Installation:

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (1.1MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1134 downloads
 
Other version of libgtk-java
libgtk-java 2.8.7and GTK libraries, so GNOME applications can be written in Java. libgtk-java is implemented as ... the Java calls out to the underlying C library. Installation: The simplest way to compile this
License:LGPL (GNU Lesser General Public License)
Download (1.1MB)
1130 downloads
Added: 2006-09-19
License:GPL (GNU General Public License)
Download (1.0MB)
1019 downloads
Added: 2007-01-08
java-diff 1.0.5

java-diff 1.0.5


java-diff is a set of Java classes which implement the longest common subsequences algorithm. more>>
java-diff is a set of Java classes which implement the longest common subsequences algorithm.

java-diff compares the elements in two arrays, returning a list of Difference objects, each of which describes an addition, deletion, or change between the two arrays.

<<less
Download (0.015MB)
Added: 2006-08-23 License: LGPL (GNU Lesser General Public License) Price:
1165 downloads
Java Tetris 1.0

Java Tetris 1.0


Java Tetris project is a simple Tetris game. more>>
Java Tetris project is a simple Tetris game.
Java Tetris is a game written with Eclipse and the VE Plugin. It is a nice starting point if you want to learn Java and Eclipse.
The game can be started as Java applet or Java application.
Enhancements:
- The dependency on jdom was removed.
- The jar is now only 30kb.
- A bug was fixed in the score list.
<<less
Download (0.12MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
961 downloads
Java Tools 0.30

Java Tools 0.30


Java Tools is a lightweight integrated development environment for creating, compiling, and executing Java applications. more>>
Java Tools is a lightweight integrated development environment for creating, compiling, and executing Java applications and applets.
Java Tools includes point and click access to the Java files, commands, and documents. It also includes a built-in text editor and user interface for the Java debugger.
It is intended for the new Java user who needs help getting started. Its also for the more experienced Java user who wants easy access to the Java commands and a text editor.
Main features:
- GUI with built-in help and small footprint.
- Point and click access to all files (Java, manifest, HTML, image and sound) and directories (package).
- Point and click access to all commands for compiling (javac), archiving (jar), documenting (javadoc), executing (java), debugging (jdb) and disassembling (javap).
- Point and click access to all documents (Java API Specification, Java Tools and Utilities, Java Features and Java Tutorial).
- Point and click creation of all files (Java, manifest and HTML) and directories (package).
- Point and click installation of distribution archive files (Java document, Java source code, Java Tutorial and Sun Tools).
- Automatic determination of class file dependencies for archiving (jar) and documenting (javadoc) Java files.
- Checking for unused, redundant and missing imports.
- Logging of all commands invoked by GUI.
- Code metrics for Java files.
- Built-in text editor (see Edit for details).
- Built-in user interface for the Java debugger with command-line editing and history.
- Self-installing executable (Java archive file).
- Comprehensive installation and user documentation for Java and Java Tools.
<<less
Download (0.15MB)
Added: 2007-07-09 License: Freeware Price:
838 downloads
Java-Gnome 4.0.3

Java-Gnome 4.0.3


Java-GNOME is a set of Java bindings for the GNOME and GTK libraries. more>>
Java-GNOME application is a set of Java bindings for the GNOME and GTK libraries that allow GNOME and GTK applications to be written in Java.

The Java-Gnome API has been carefully designed to be easy to use, maintaining a good OO paridigm, yet still wrapping the entire functionality of the underlying libraries.

Java-Gnome can be used with the Eclipse development environment and Glade user interface designer to create applications with ease.

Java-Gnome is part of the official Gnome Bindings Release, commiting us to high quality regular releases.

<<less
Download (0.17MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
libgnome-java 2.12.7

libgnome-java 2.12.7


Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. more>>
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java.

Java-GNOME is implemented as a JNI layer that delegates the Java calls out to the underlying C library.

Installation:

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (0.47MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1020 downloads
libgconf-java 2.12.6

libgconf-java 2.12.6


Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java. more>>
Java-GNOME is a set of Java bindings for GNOME and GTK libraries, so GNOME applications can be written in Java.

Java-GNOME is implemented as a JNI layer that delegates the Java calls out to the underlying C library.

Installation:

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (0.33MB)
Added: 2007-01-07 License: GPL (GNU General Public License) Price:
1020 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5