A good Design-by-Contract library for Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T10:45:22Z http://stackoverflow.com/feeds/question/1075719 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java 4 A good Design-by-Contract library for Java? Chris Jones 2009-07-02T17:38:12Z 2009-07-02T21:17:11Z <p>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?</p> http://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java/1075789#1075789 0 Answer by dfa for A good Design-by-Contract library for Java? dfa 2009-07-02T17:53:08Z 2009-07-02T17:53:08Z <p>I think that many DbC libraries were surclassed by the builtin <strong>assert</strong> keyword, introduced since Java 1.4:</p> <ul> <li>it is a built-in, no other library is required</li> <li>it works with inheritance</li> <li>you can activate/deactivate on package basis</li> <li>easy to refactoring (e.g. no assertions in comments)</li> </ul> http://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java/1075818#1075818 1 Answer by Janusz for A good Design-by-Contract library for Java? Janusz 2009-07-02T17:59:15Z 2009-07-02T17:59:15Z <p>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. </p> <p>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. </p> <p>A link to the <a href="http://www.contract4j.org/" rel="nofollow">library</a></p> http://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java/1076733#1076733 2 Answer by mattwright for A good Design-by-Contract library for Java? mattwright 2009-07-02T21:17:11Z 2009-07-02T21:17:11Z <p>It's been a long time since I've looked at these, but found some old links. One was for <a href="http://csd.informatik.uni-oldenburg.de/~jass/" rel="nofollow">JASS</a>. </p> <p>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 <a href="http://answers.google.com/answers/threadview/id/500027.html" rel="nofollow">this link</a> for some possible ways to get to it.</p>