vote up 4 vote down star

A few years ago, I did a survey of DbC packages for Java, and I wasn't wholly satisfied with any of them. Unfortunately I didn't keep good notes on my findings, and I assume things have changed. Would anybody care to compare and contrast different DbC packages for Java?

flag

3 Answers

vote up 0 vote down

I think that many DbC libraries were surclassed by the builtin assert keyword, introduced since Java 1.4:

  • it is a built-in, no other library is required
  • it works with inheritance
  • you can activate/deactivate on package basis
  • easy to refactoring (e.g. no assertions in comments)
link|flag
1  
but SUN writes "Do not use assertions to check the parameters of a public method" in java.sun.com/javase/6/… – Carlos Heuberger Jul 2 at 19:29
More to the point, DbC should make it easy to add contracts to your code. If it's not easy, most developers won't do it. It's possible to implement class invariants using assertions and calls to a class invariant method, but it's clumsy. – Chris Jones Jul 7 at 20:08
vote up 1 vote down

I tested contract4J one time and found it usable but not perfect. You are creating contracts for for and after method calls and invars over the whole class.

The contract is created as an assertion for the method. The Problem is that the contract itself is written in a string so you don't have IDE support for the contracts or compile time cheching if the contract still works.

A link to the library

link|flag
vote up 2 vote down

It's been a long time since I've looked at these, but found some old links. One was for JASS.

The other one that I had used (and liked) was iContract by Reliable Systems. It had an ant task that you would run as a preprocessor. However, I can't seem to find it with some google searches, it looks like it has vanished. The original site is now a link farm. Check out this link for some possible ways to get to it.

link|flag
The most recent version of JASS is from July 2005. I'm not going to speculate about what versions of the JDK it supports. JASS has a link to JML, though, which looks to be under active development. – Chris Jones Jul 7 at 20:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.