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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*******************************************************************************
 * Copyright (c) 2006, 2009 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Brad Reynolds - bug 164653
 *     Matthew Hall - bugs 118516, 146397, 249526
 *******************************************************************************/

package org.eclipse.core.databinding.observable;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.AssertionFailedException;

/**
 * @since 1.0
 */
public abstract class AbstractObservable extends ChangeManager implements IObservable {
    private boolean disposed = false;

    /**
     * @param realm
     */
    public AbstractObservable(Realm realm) {
        super(realm);
        ObservableTracker.observableCreated(this);
    }

    public synchronized void addChangeListener(IChangeListener listener) {
        addListener(ChangeEvent.TYPE, listener);
    }

    public synchronized void removeChangeListener(IChangeListener listener) {
        removeListener(ChangeEvent.TYPE, listener);
    }

    public synchronized void addStaleListener(IStaleListener listener) {
        addListener(StaleEvent.TYPE, listener);
    }

    public synchronized void removeStaleListener(IStaleListener listener) {
        removeListener(StaleEvent.TYPE, listener);
    }

    /**
     * @since 1.2
     */
    public synchronized void addDisposeListener(IDisposeListener listener) {
        addListener(DisposeEvent.TYPE, listener);
    }

    /**
     * @since 1.2
     */
    public synchronized void removeDisposeListener(IDisposeListener listener) {
        removeListener(DisposeEvent.TYPE, listener);
    }

    protected void fireChange() {
        checkRealm();
        fireEvent(new ChangeEvent(this));
    }

    protected void fireStale() {
        checkRealm();
        fireEvent(new StaleEvent(this));
    }

    /**
     * @since 1.2
     */
    public synchronized boolean isDisposed() {
        return disposed;
    }

    /**
     * 
     */
    public synchronized void dispose() {
        if (!disposed) {
            disposed = true;
            fireEvent(new DisposeEvent(this));
            super.dispose();
        }
    }

    /**
     * Asserts that the realm is the current realm.
     * 
     * @see Realm#isCurrent()
     * @throws AssertionFailedException if the realm is not the current realm
     */
    protected void checkRealm() {
        Assert.isTrue(getRealm().isCurrent(),
                "This operation must be run within the observable's realm"); //$NON-NLS-1$
    }
}
			
			

Browsed Source: [clear]