Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c719ca25792f13b41fc0ac7b9d44e5b01d5ab534 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2008 ARM Limited 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:
 * ARM Limited - Initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.debug.core.disassembly;

/**
 * The instances of this interface are notified when 
 * a disassembly context is registered or unregistered 
 * with <code>IDisassemblyContextService</code>.
 * <p>
 * This interface is used by the disassembly UI components.
 * </p>
 * <p>
 * The clients may implement this interface.
 * </p>
 * This interface is experimental.
 */
public interface IDisassemblyContextListener {
    
    /**
     * Indicates that <code>context</code> has been registered
     * with <code>IDisassemblyContextService</code>.
     * 
     * @param context the disassembly context that is registered
     */
    public void contextAdded( Object context );

    /**
     * Indicates that <code>context</code> has been unregistered
     * with <code>IDisassemblyContextService</code>.
     * 
     * @param context the disassembly context that is unregistered
     */
    public void contextRemoved( Object context );
}

Back to the top