Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2c7f107e83e58c1a91855eff5cc5ce8f90cfe4c0 (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
44
45
46
47
48
/*******************************************************************************
 * Copyright (c) 2004, 2008 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
 *******************************************************************************/
package org.eclipse.debug.ui.memory;



/**
 * Manager for memory renderings. Provides facilities for creating
 * renderings and retrieving memory rendering bindings.
 * @since 3.1
 * @noimplement This interface is not intended to be implemented by clients.
 * @noextend This interface is not intended to be extended by clients.
 */
public interface IMemoryRenderingManager extends IMemoryRenderingBindingsProvider {


    /**
     * Returns all contributed memory rendering types.
     *
     * @return all contributed memory rendering types
     */
    public IMemoryRenderingType[] getRenderingTypes();

    /**
     * Returns the memory rendering type with the given identifier, or
     * <code>null</code> if none.  The memory rendering manager will
     * search through rendering types that are contributed via explicit
     * rendering bindings.  (i.e. rendering types contributed via the
     * memoryRenderings extension point). This method will not return
     * rendering types that are contributed by a memory binding provider.
     *
     * @param id memory rendering type identifier
     * @return the memory rendering type with the given identifier, or
     * <code>null</code> if none
     */
    public IMemoryRenderingType getRenderingType(String id);

}


Back to the top