AJT 1.21 released

This release on adds an implementation of a DefaultConcurrentHashMap. This implementation is like a regular ConcurrentHashMap, except that when a value is requested with a key that does not exist, it will return a default value, instead of null

Download
API documentation

Command line printing with Firefox

To print from the command line with Firefox, you need to install an extension. One such extension is
Command Line Print by torisugari.

This extension allows you to print URLs immediately, without user interaction. This can be useful to convert html pages to PDF for example.

You first have to install the extension from http://torisugari.googlepages.com/commandlineprint2

After you've properly installed the extension, you can start using Firefox as command line printer.

Usage:

$>firefox -print http://www.example.com/index.html

Tar selected files based on file name

To include only a set of files with tar, you can use the following one liner. This example will tar all files with the java extension in the archive with the name test.


find . -name '*.java' | tar czvf test.tar.gz --files-from -

AJT 1.20 released

We have split the FrequencyMap from its utility methods. All utility methods to
manipulate the FrequencyMap now reside in FrequencyMapUtils, while FrequencyMap
is a bare bones implementation.

Download
API documentation

AJT 1.19 released

In this release we have removed the taglets library, as this one is no longer needed.

We added a truncate method and some other utility methods to the FrequencyMap. The requencyMap is now an extension of TreeMap instead of HashMap and we added a DefaultTreeMap implementation

We have split the different GraphicsFileExport formats over different classes, which makes it possible to only use the once you want without needing to include all libraries.

Download
API documentation

AJT 1.18 released

We added a utility class to easily access the MD5 algorithm to calculate the hash from a String and return the result in hexadecimal representation.

Download
API documentation

AJT 1.17 released

We have removed the JMLSourceTaglet, this did not belong is this project and has been moved to the Java-ML machine learning library.

We added FrequencyMap, this class allows you to do quickly count how many of each item occurs.

Added constructor the JIntegerField without arguments

Fixed the output of AutoHelpCmdLineParser when only the long form is supplied

Download
API documentation

AJT 1.16 released

We have added a new utility class called DefaultHashMap to the AJT library. This is an extension of the java.util.HashMap that returns a default value when the key is not present in the map.

Download
API documentation

Java-ML moves to Sourceforge

The announcements for Java-ML will no longer be posted here, but at the new web site for Java-ML.
http://java-ml.sourceforge.net

During the next few weeks we will migrate information from here to the new site.

AJT 1.15 released

The Abeel Java Toolkit version 1.15 has been released, providing SVG export and fixing some bugs in LineIterator and ColumnIterator.

The Abeel Jave Toolkit 1.15 is available for download , with new documentation.

Syndicate content