samples/reentrant/test/org/apidesign/reentrant/CriticalSectionReentrantImmutableTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:54:39 +0200
changeset 114 c479228609ea
permissions -rw-r--r--
Part II: Practical Design is now ready for review by our reviewers
     1 package org.apidesign.reentrant;
     2 
     3 public class CriticalSectionReentrantImmutableTest extends CriticalSectionBase {
     4     @Override
     5     protected boolean reentrantJustOnce() {
     6         return true;
     7     }
     8     
     9     @Override
    10     protected CriticalSection<Integer> create() {
    11         return new CriticalSectionReentrantImmutable<Integer>();
    12     }
    13 }