Tips and general rambling about Oracle JDeveloper, SCM, user interfaces, and other miscellaneous stuff.

Calendar

September 2003
Sun Mon Tue Wed Thu Fri Sat
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30        
Aug   Oct

Brian Duff's Weblog

 02 September 2003


JCP Gets All Transparent

A while back I grumbled a bit about the generally archaic nature of getting involved in the Java Community Process (paper form indeed... tsk). It looks like JSR-215, a proposal for JCP 2.6 might possibly make life a bit more pleasant... More transparency is a GoodThing

I've also been trying out Java 1.5. My first ever "it's technically useless, but demonstrates the new language features" java 1.5 program:

import java.util.*;

public class TestClass {

public static void main( String[] args ) { List<String> words = new ArrayList<String>();

words.add( "This" ); words.add( " is" ); words.add( " cool :)" );

for(String str : words ) { System.out.println( str.trim() ); }

List<Integer> ints = new ArrayList<Integer>();

ints.add( 1 ); ints.add( 2 ); ints.add( 3 ); }

public enum ThingType { FIRST, SECOND, THIRD; } }


2:38:23 AM     comment []


weblog   |   articles
© Copyright 2003 Brian Duff. Last Updated 09/10/2003; 15:59:08. Java is a trademark or registered trademark of Sun Microsystems, Inc. in the United States and other countries.