Jump to content

Talk:Java Modeling Language

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 134.2.222.208 (talk) at 07:47, 9 July 2008. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Hi, just a question, why is the literature mentioned not linked from here? Links are available online. --Gwyndon 21:24, 8 May 2006 (UTC)[reply]

The external link to the JML homepage is broken. Glasser 18:52, 22 June 2006 (UTC)[reply]

a <==> b

The logical construct a if and only if b

What does logical construct mean? --Abdull (talk) 16:06, 22 February 2008 (UTC)[reply]

;

   //@ requires amount > 0;
   //@ ensures balance = \old(balance) - amount;
   //@ assignable balance
   public void debit(int amount) { ... }

I think there is a ; missing instead it should be

   //@ requires amount > 0;
   //@ ensures balance = \old(balance) - amount;
   //@ assignable balance;
   public void debit(int amount) { ... }