Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: ClassLib/Common/sun/misc/AtomicLongCSImpl.java


1   // AtomicLongCSImpl.java, created Aug 9, 2003 3:50:36 AM by John Whaley
2   // Copyright (C) 2003 John Whaley
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package ClassLib.Common.sun.misc;
5   
6   /**
7    * AtomicLongCSImpl
8    * 
9    * @author John Whaley
10   * @version $Id: AtomicLongCSImpl.java,v 1.1 2003/08/09 11:26:27 joewhaley Exp $
11   */
12  abstract class AtomicLongCSImpl {
13      public boolean attemptUpdate(long a, long b) {
14          throw new InternalError();
15      }
16  }