Projects tagged ‘java’ and ‘list’


[12 total ]

1 Users

Provides integration with GlazedLists.
Created 2 days ago.

0 Users

Task List Online Web Application
Created 3 months ago.

0 Users

Helper libraries that could be used when developing any java application. Library includes: Java Property sorters Easy localization tools Collections: Data Packs ID Sorted List (based on ... [More] Identifiable interface) XD Array List Read Only Array List Limited Array List [Less]
Created 10 months ago.

0 Users

Práctica de la UIB
Created 3 months ago.

0 Users

jFluent is a little and simple library that provides a fluent layer over the java.util, java.lang and JDBC packages. The library is in ALPHA stage, so if you want the very last version just check ... [More] out the sources from the repository. Now you can operate on lists and strings like that: import static com.jfluent.builders.BuilderFacade.*; import com.jfluent.base.*; public class FluentSimpleTest { public static void main(String[] args) { string("o hai!") .append(" ") .append( list("i", "can", "has", "cheezburger", "plz", "?") .map(new Function() { public String apply(String element) { return element + " "; } }) .get()) .append("\n") .append( list(range('A', 'Z')) .reverse() .filter(new Predicate() { public boolean apply(Character c) { return c > 'M'; } }) .join(",")) .println(System.out); } }Output: o hai! i can has cheezburger plz ? Z,Y,X,W,V,U,T,S,R,Q,P,O,NAlso, a fluent approach over jdbc is possible: import static com.jfluent.builders.BuilderFacade.*; import com.jfluent.db.base.Handle; import java.util.List; public final class DBFluentTest { public static void main(String[] args) throws Exception { Handle empList = param(); withConnection(JDBC_URI_HERE) .username("scott") .password("tiger") .loadOracleDriver() .doThis( procedure("package1.open_cur_emp") // call this procedure .outRS(empList, EmpBean.class) // put the resultset into a list of beans .in(nullObj(Integer.class))); // passing a null integer as input for (Object o : empList.value()) { EmpBean e = (EmpBean)o; // do something with your list of entity beans } } }For more info on fluent interfaces and DSLs, the work in progress book by Martin Fowler is a good starting point. It can be found here: http://martinfowler.com/dslwip/ I'd like to hear opinions and suggestions for improvements! Contact me at martinelli.diego at gmail.com [Less]
Created about 1 year ago.

0 Users

xmpp-roster-backup is a simple console utility to list your XMPP (Jabber) roster contacts. It can be used to easily backup list of your friends in case your jabber provider ceases to exist, some ... [More] accident happens to its servers, etc. This tool is written in Java. It should work on all operating systems, although it was tested on Linux only. It requires Java 6. Remark: This tool is simple, functional and completely serves my needs. I don't have any intentions to add further functionalities. But if you want to participate or even take over the project and improve it substantially, you're welcome. [Less]
Created about 1 year ago.

0 Users

a lightweight API for functional-style list operations
Created 4 months ago.

0 Users

Created 4 months ago.

0 Users

Collection of classes and interfaces that implements ADTs like lists, queues, stacks, etc, for teaching/learning propouses
Created 4 months ago.

0 Users

this is yet another web based todo list but it has desktop clients. so there is no need to do things through a browser. the java client can run as an application or using webstart from anywhere.
Created 4 months ago.