Skip to main content
summaryrefslogtreecommitdiffstats
blob: c0e9d805ff3412e066eb931bdd842daa8973c97e (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
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
/*******************************************************************************
 * Copyright (c) 2007, 2012 Wind River Systems 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:
 *     Wind River Systems, Inc. - initial implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.internal.ui.viewmodel.numberformat.detail;

import java.util.HashSet;
import java.util.Set;

import org.eclipse.cdt.dsf.debug.internal.ui.viewmodel.detailsupport.MessagesForDetailPane;
import org.eclipse.debug.ui.IDetailPane;
import org.eclipse.debug.ui.IDetailPaneFactory;
import org.eclipse.jface.viewers.IStructuredSelection;

/**
 *  This provides a simple Detail Pane Factory for the core debug views for DSF.
 */

public class NumberFormatDetailPaneFactory implements IDetailPaneFactory {

    /* (non-Javadoc)
     * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#createDetailsArea(java.lang.String)
     */
    @Override
    public IDetailPane createDetailPane(String id) {
        return new NumberFormatDetailPane();
    }

    /* (non-Javadoc)
     * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDetailsTypes(org.eclipse.jface.viewers.IStructuredSelection)
     */
    @SuppressWarnings("rawtypes")
    @Override
    public Set getDetailPaneTypes(IStructuredSelection selection) {
        Set<String> possibleIDs = new HashSet<String>(1);
        possibleIDs.add(NumberFormatDetailPane.ID);
        return possibleIDs;
    }
    
    /* (non-Javadoc)
     * @see org.eclipse.debug.ui.IDetailPaneFactory#getDefaultDetailPane(java.util.Set, org.eclipse.jface.viewers.IStructuredSelection)
     */
    @Override
    public String getDefaultDetailPane(IStructuredSelection selection) {
        return null; // Allow competing detail pane factories to override this one
    }

    /* (non-Javadoc)
     * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getName(java.lang.String)
     */
    @Override
    public String getDetailPaneName(String id) {
        if (id.equals(NumberFormatDetailPane.ID)){
            return MessagesForDetailPane.NumberFormatDetailPane_Name;
        }
        return null;
    }

    /* (non-Javadoc)
     * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDescription(java.lang.String)
     */
    @Override
    public String getDetailPaneDescription(String id) {
        if (id.equals(NumberFormatDetailPane.ID)){
            return MessagesForDetailPane.NumberFormatDetailPane_Description;
        }
        return null;
    }

}

Back to the top