Projects tagged ‘collection’ and ‘java’


Jump to tag:

Projects tagged ‘collection’ and ‘java’

Filtered by Project Tags collection java

Refine results Project Tags framework (3) manager (2) utils (2) movie (2) library (2) comics (2) music (2) id3 (1) workflow (1) wma (1) editor (1) graphics (1)

[19 total ]

4 Users
   

Jajuk is software that organizes and plays music. It is a fully-featured application geared towards advanced users with large or scattered music collections.
Created over 3 years ago.

3 Users

Data Crow is the ultimate cataloger of your media (or anything else). Data Crow allows you to create a huge database containing all your collected items. You can use the excellent online services to ... [More] retrieve the information instead of typing all the information yourself. Out of the box you can manage your software, music, movies, books and images. It uses information from the web and the information available in the file (if applicable), such as the tag information from mp3 files. Additionally Data Crow allows you to create your own modules (for example a coin collectors module), features a web server, is highly customizable and has a very broad tool set. The internal help will guide you thru the application. [Less]
Created about 1 year ago.

1 Users
 

The Anything is a collection class implementation which combines the characteristics of a list and a hashmap into one data structure. Elements are stored in insertion order and can be accessed by ... [More] offset position. These elements are of simple types (boolean, number, string, etc.) or are (recursively) Anythings. Additionally elements can carry a key (slotname). So Anythings have also hashmap (dictionary) semantics. The implementation also provides methods to read and write Anythings from/to streams and strings. The list semantics ensure, that Anything slots are written back in the same order as they were inserted/read. This is a very convenient feature for manipulating configuration files or for regression test diff-tools. [Less]
Created about 1 year ago.

1 Users

PhotOrganizer is a Java desktop application for browsing and managing a digital image collection.
Created about 1 year ago.

1 Users

Library aiming to simplify the use of certain data structures.
Created over 2 years ago.

0 Users

Helps to keep track of a collection of computers. I made this app so that I could track which 8-bit machines I had and which I still wanted to get. LinksOpenIntents - http://www.openintents.org/en/ Android EBooks - http://commonsware.com/books
Created about 1 month ago.

0 Users

This project is a way of implementing a JPA, Hibernate, Spring, Struts2, Web2.0 application. In sus it handle creation of a new movie by extracting movie cover and information from ... [More] http://www.moviecovers.com. The build process use Maven2. These version can be run with the maven command line: mvn -Djetty.port=8888 jetty:run [Less]
Created about 1 year ago.

0 Users

Japura is a Swing project. It is a collection of components and application framework. Contact me at cadu@japura.org for suggestions or feedbacks.
Created 12 months ago.

0 Users

Simple and fun application that manages business as well as personal projects. Simple, clean, and powerful is this project's vision.
Created 4 months ago.

0 Users

CiQUTa is a set of utilities to perform queries on Collections and on other data structures using well known Hibernate style idioms as QueryByExample, Criteria and HQL. An example is worth 1000 ... [More] wordsHave you ever found a piece of code like that, to extract some useful data from a Collection ? List result = new ArrayList(); for(Iterator i = catalog.cars.iterator(); i.hasNext(); ){ Car car = (Car)i.next(); if( car.getModel().equals("518") && car.getMaker().getName().equals("BMW") ){ result.add(car); } }Would you like instead to use that alternative way to obtain the very same result ? List result = CriteriaImpl .forCollection(catalog.cars) .add(Restrictions.eq("model", "518")) .add(Restrictions.eq("maker.name", "BMW")) .list();If the answer is "yes", give CiQUTa a try. [Less]
Created 11 months ago.