Example usage for java.lang Object subclass-usage

List of usage examples for java.lang Object subclass-usage

Introduction

In this page you can find the example usage for java.lang Object subclass-usage.

Usage

From source file Deadlock.java

public class Deadlock extends Object {
    private String objID;

    public Deadlock(String id) {
        objID = id;
    }

From source file AlternateSuspendResume.java

public class AlternateSuspendResume extends Object implements Runnable {

    private volatile int firstVal;

    private volatile int secondVal;

From source file Volatile.java

public class Volatile extends Object implements Runnable {
    // not marked as 'volatile', but it should be!
    private int value;

    private volatile boolean missedIt;

From source file SimpleObjectFIFO.java

public class SimpleObjectFIFO extends Object {
    private Object[] queue;

    private int capacity;

    private int size;

From source file EarlyNotify.java

public class EarlyNotify extends Object {
    private List list;

    public EarlyNotify() {
        list = Collections.synchronizedList(new LinkedList());
    }

From source file PriorityCompete.java

public class PriorityCompete extends Object {
    private volatile int count;

    private boolean yield;

    private Thread internalThread;

From source file Signaling.java

public class Signaling extends Object {
    private BooleanLock readyLock;

    public Signaling(BooleanLock readyLock) {
        this.readyLock = readyLock;

From source file TransitionDetectorMain.java

public class TransitionDetectorMain extends Object {
    private static Thread startTrueWaiter(final TransitionDetector td, String name) {

        Runnable r = new Runnable() {
            public void run() {
                try {

From source file InterruptibleSyncBlock.java

public class InterruptibleSyncBlock extends Object {
    private Object longLock;

    private BooleanLock busyLock;

    public InterruptibleSyncBlock() {

From source file PipedCharacters.java

public class PipedCharacters extends Object {
    public static void writeStuff(Writer rawOut) {
        try {
            BufferedWriter out = new BufferedWriter(rawOut);

            String[][] line = { { "Java", "Source", "and", "Support." } };