A good Design-by-Contract library for Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T10:45:22Zhttp://stackoverflow.com/feeds/question/1075719http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java4A good Design-by-Contract library for Java?Chris Jones2009-07-02T17:38:12Z2009-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#10757890Answer by dfa for A good Design-by-Contract library for Java?dfa2009-07-02T17:53:08Z2009-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#10758181Answer by Janusz for A good Design-by-Contract library for Java?Janusz2009-07-02T17:59:15Z2009-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#10767332Answer by mattwright for A good Design-by-Contract library for Java?mattwright2009-07-02T21:17:11Z2009-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>