EMMA Coverage Report (generated Mon Sep 29 15:05:28 EDT 2008)
[all classes][org.eclipse.ui.views.properties]

COVERAGE SUMMARY FOR SOURCE FILE [IDEPropertiesMessages.java]

nameclass, %method, %block, %line, %
IDEPropertiesMessages.java0%   (0/1)0%   (0/3)0%   (0/7)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class IDEPropertiesMessages0%   (0/1)0%   (0/3)0%   (0/7)0%   (0/4)
IDEPropertiesMessages (): void 0%   (0/1)0%   (0/3)0%   (0/2)
format (String, Object []): String 0%   (0/1)0%   (0/2)0%   (0/1)
getString (String): String 0%   (0/1)0%   (0/2)0%   (0/1)

1/*******************************************************************************
2 * Copyright (c) 2000, 2005 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 *     IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 
12package org.eclipse.ui.views.properties;
13 
14 
15/**
16 * Utility class which helps manage messages.
17 * @deprecated These messages are not API and should not be referenced
18 * outside of this plug-in.
19 */
20class IDEPropertiesMessages {
21    private IDEPropertiesMessages() {
22        // prevent instantiation of class
23    }
24 
25    /**
26     * Returns the formatted message for the given key in
27     * the resource bundle. 
28     *
29     * @param key the resource name
30     * @param args the message arguments
31     * @return the string
32     */
33    public static String format(String key, Object[] args) {
34        return key;
35    }
36 
37    /**
38     * Returns the resource object with the given key in
39     * the resource bundle. If there isn't any value under
40     * the given key, the key is returned.
41     *
42     * @param key the resource name
43     * @return the string
44     */
45    public static String getString(String key) {
46        return key;
47    }
48}

[all classes][org.eclipse.ui.views.properties]
EMMA 2.0.5312 EclEmma Fix 1 (C) Vladimir Roubtsov