File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+ <div style =" display : flex ; justify-content : space-between ;" >
2+ <div style="width: 30%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
3+ <a href="TOC.html"><<<Previous</a>
4+ <br>
5+ This content will not wrap if it's too long, but it will be cut off.
6+ </div>
7+ <div style="width: 30%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
8+ <a href="TOC.html">TOC</a>
9+ <br>
10+ This content will also be on a single line.
11+ </div>
12+ <div style="width: 30%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
13+ <a href="Preconditions.html">Nexti >>></a>
14+ <br>
15+ Keeping things spread out across the page.
16+ </div>
17+ </div >
18+
119---
220title: JML Tutorial - Postconditions (ensures clauses)
321---
Original file line number Diff line number Diff line change 22public class T_ensures3 {
33 //@ requires a.length > 0;
44 //@ ensures \result == a[0];
5- public int fist (int [] a ) {
5+ public int first (int [] a ) {
66 return a [0 ];
77 }
88}
You can’t perform that action at this time.
0 commit comments