JavaOne 2008 Report, Part 1: TuesdayI made the trip out to San Francisco for JavaOne. The first day kicked off with a speech entitled Java + You. I came in late because, well, I had an issue finding the right conference center.. not Moscone West, not Moscone South, but Moscone NORTH, whew! I enjoyed the talk until they trotted out Neil Young, the ancient musician and liberal crackpot. try {
// stuff
}
catch (X1, X2 e) { foo(); }
catch (X3 e) { bar(); }
Safe Re-thow
try {
// stuff
}
catch (final Throwable e) {
logger.log(e);
throw e;
}
Switch on String
switch (value)
{
case "red":
foo();
break;
}
Modules
module org.netbeans.core;
package org.netbeans.core.utils;
Annotations (JSR 308)
Adds annotations on generics
List <@NonNull String> strings;
Adds annotations to casts
endRegex = (@NonNullPattern) endRegex;
I went to a session on Grails that was pretty similiar to the class I attended at No Fluff, Just Stuff a few months ago. Following that I went to a class on GWT where the only thing I picked up was that testing GWT classes in difficult. Then I ended the night with a session on writing plugins for Eclipse, NetBeans IDE and IDEA. The main takeaway from that session was that Eclipse uses plugins in SWT and everybody else uses Swing. It has been a long day. I have classes tomorrow on Groovy, Struts 2, OpenSocial and Comet. So I'm off to bed to do a bit of reading before calling it a night. Posted at 12:56 PM
|
Search
Recent Entries
Spycraft LARP Video
Read a Book The Great Divorce JavaOne 2008 Report, Part 4: Friday JavaOne 2008 Report, Part 3: Thursday JavaOne 2008 Report, Part 2: Wednesday JavaOne 2008 Report, Part 1: Tuesday Groovy Credit Card Number Validation Wish You Were Here Love Note (Older Entries) Other Journals
License
RSS Feed
|