March 14, 2010
Stephen Colebourne: Java language design by use case.
In a blog in 2006 Neal Gafter
wrote
about how language design was fundamentally different to API design and how use cases
were a bad approach to language design.
This blog questions some of those conclusions in the context of the Java language.
More »
March 13, 2010
FindBugz Community Review. I am very fond of FindBugz (indeed it has found its way into the QA process of most projects I work on....). When visiting the site to check Eclispe 3.5.2 compatibility I found they were working on a new tool.
Indeed a very interesting tool.
Looks li...
More »
|
 |
December 16, 2008
Here's a new feature for NetBeans 7.0: Code Coverage support!
First a screenshot:
There are a couple of key points about the code coverage support:
It is fully integrated into the IDE, and especially the editor. You don't get read-only view...
More »
This post is a little introduction of the reflection of generics in Java, and how my little library would help you do this.
More »
The last few days I ported (almost) all the XRender specific C code to Java, and although there are still some bugs left (e.g. it deadlocks from time to time) it works quite well:All the functionality/features of the C based pipeline have been porte...
More »
I try hard to understand when should mechListMIC be generated in SPNEGO, but still find the specification (RFC 4178) confusing. I'd like to interpret it this way:
...
More »
We have all heard about how HotSpot is really good at dealing with short-lived objects (both allocation and GC), but the truth is that object allocation is still pretty costly when compared to operations like addition or multiplication. Allocating a...
More »
|