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

COVERAGE SUMMARY FOR SOURCE FILE [BookmarkMessages.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class BookmarkMessages0%   (0/1)0%   (0/3)0%   (0/7)0%   (0/4)
BookmarkMessages (): 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.bookmarkexplorer;
13 
14 
15/**
16 * Utility class which helps managing messages
17 * @deprecated These messages are not API and should not be referenced
18 * outside of this plug-in.
19 */
20class BookmarkMessages {
21 
22    private BookmarkMessages() {
23        // prevent instantiation of class
24    }
25 
26    /**
27     * Returns the formatted message for the given key in
28     * the resource bundle. 
29     *
30     * @param key the resource name
31     * @param args the message arguments
32     * @return the string
33     */
34    public static String format(String key, Object[] args) {
35        return key;
36    }
37 
38    /**
39     * Returns the resource object with the given key in
40     * the resource bundle. If there isn't any value under
41     * the given key, the key is returned.
42     *
43     * @param key the resource name
44     * @return the string
45     */
46    public static String getString(String key) {
47       return key;
48    }
49}

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