blob: 40807083aa8cdc9f27ce23971344b56f81850c4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package java.util.concurrent.atomic;
public class AtomicInteger
extends java.lang.Number
implements java.io.Serializable
{
public AtomicInteger(int initialValue) { throw new RuntimeException("Stub!"); }
public AtomicInteger() { throw new RuntimeException("Stub!"); }
public final int get() { throw new RuntimeException("Stub!"); }
public final void set(int newValue) { throw new RuntimeException("Stub!"); }
public final void lazySet(int newValue) { throw new RuntimeException("Stub!"); }
public final int getAndSet(int newValue) { throw new RuntimeException("Stub!"); }
public final boolean compareAndSet(int expect, int update) { throw new RuntimeException("Stub!"); }
public final boolean weakCompareAndSet(int expect, int update) { throw new RuntimeException("Stub!"); }
public final int getAndIncrement() { throw new RuntimeException("Stub!"); }
public final int getAndDecrement() { throw new RuntimeException("Stub!"); }
public final int getAndAdd(int delta) { throw new RuntimeException("Stub!"); }
public final int incrementAndGet() { throw new RuntimeException("Stub!"); }
public final int decrementAndGet() { throw new RuntimeException("Stub!"); }
public final int addAndGet(int delta) { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public int intValue() { throw new RuntimeException("Stub!"); }
public long longValue() { throw new RuntimeException("Stub!"); }
public float floatValue() { throw new RuntimeException("Stub!"); }
public double doubleValue() { throw new RuntimeException("Stub!"); }
}
|