EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.pcmbench.preferences]

COVERAGE SUMMARY FOR SOURCE FILE [PCMBenchPreferences.java]

nameclass, %method, %block, %line, %
PCMBenchPreferences.java0%   (0/1)0%   (0/3)0%   (0/15)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PCMBenchPreferences0%   (0/1)0%   (0/3)0%   (0/15)0%   (0/5)
PCMBenchPreferences (): void 0%   (0/1)0%   (0/3)0%   (0/1)
createContents (Composite): Control 0%   (0/1)0%   (0/11)0%   (0/3)
init (IWorkbench): void 0%   (0/1)0%   (0/1)0%   (0/1)

1package de.uka.ipd.sdq.pcmbench.preferences;
2 
3import org.eclipse.jface.preference.PreferencePage;
4import org.eclipse.swt.SWT;
5import org.eclipse.swt.widgets.Composite;
6import org.eclipse.swt.widgets.Control;
7import org.eclipse.swt.widgets.Label;
8import org.eclipse.ui.IWorkbench;
9import org.eclipse.ui.IWorkbenchPreferencePage;
10 
11/**
12 * 
13 * This preference page is supposed to be the root of all Palladio-related preference pages in the
14 * hierarchically organised Eclipse preferences dialogue. For this, each Palladio-related preference
15 * page must set its "category" property to the page id corresponding to this preference page.
16 * <p>
17 * Currently, this preference page does not contribute any configuration possibilities by itself.
18 * Ideally, however, this page would host some general preferences that are relevant for more than a
19 * single plug-in (if there are any).
20 * 
21 * @author Philipp Merkle
22 * 
23 */
24public class PCMBenchPreferences extends PreferencePage implements IWorkbenchPreferencePage {
25 
26    @Override
27    protected Control createContents(Composite parent) {
28        Label label = new Label(parent, NONE);
29        label.setText("Please expand the tree and use the preference pages of the respective Palladio features.");
30        return label;
31    }
32 
33    @Override
34    public void init(IWorkbench workbench) {
35        // nothing to do here
36    }
37 
38}

[all classes][de.uka.ipd.sdq.pcmbench.preferences]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov