JML

org.jmlspecs.samples.stacks
Class UnboundedStack

java.lang.Object
  extended byorg.jmlspecs.samples.stacks.UnboundedStack
Direct Known Subclasses:
UnboundedStackAsArrayList

public abstract class UnboundedStack
extends Object


Class Specifications
public invariant this.theStack != null;
public initially this.theStack != null&&this.theStack.isEmpty();

Specifications inherited from class Object
represents objectState <- org.jmlspecs.lang.JMLDataGroup.IT;
public represents _getClass <- \typeof(this);

Model Field Summary
 JMLObjectSequence theStack
           
 
Model fields inherited from class java.lang.Object
_getClass, objectState, theString
 
Ghost Field Summary
 
Ghost fields inherited from class java.lang.Object
objectTimesFinalized, owner
 
Constructor Summary
UnboundedStack()
           
 
Model Method Summary
 
Model methods inherited from class java.lang.Object
hashValue
 
Method Summary
abstract  void pop()
           
abstract  void push(Object x)
           
abstract  Object top()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Model Field Detail

theStack

public JMLObjectSequence theStack
Specifications:
datagroup contains: org.jmlspecs.samples.stacks.UnboundedStackAsArrayList.elems elems.theList
Constructor Detail

UnboundedStack

public UnboundedStack()
Method Detail

pop

public abstract void pop()
Specifications:
public normal_behavior
requires !this.theStack.isEmpty();
assignable theStack;
ensures this.theStack.equals(\old(this.theStack.trailer()));

push

public abstract void push(Object x)
Specifications:
public normal_behavior
assignable theStack;
ensures this.theStack.equals(\old(this.theStack.insertFront(x)));

top

public abstract Object top()
Specifications: pure
public normal_behavior
requires !this.theStack.isEmpty();
assignable \nothing;
ensures \result == this.theStack.first();

JML

JML is Copyright (C) 1998-2002 by Iowa State University and is distributed under the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This release depends on code from the MultiJava project and is based in part on the Kopi project Copyright (C) 1990-99 DMS Decision Management Systems Ges.m.b.H.