JML Alternatives

626 Views Asked by At

I am looking for alternative specification languages options for Java, like JML.

Does any one know any?

Thanks.

1

There are 1 best solutions below

0
On BEST ANSWER

Contracts for Java (http://code.google.com/p/cofoja/) is a Google project that enables you to write method contracts in Java annotations.

The framework can automatically insert the contracts as dynamic runtime checks using an offline bytecode rewriter.