EMMA Coverage Report (generated Wed Jun 27 17:43:42 CEST 2012)
[all classes][aarddict.android]

COVERAGE SUMMARY FOR SOURCE FILE [DiscoveryProgressDialog.java]

nameclass, %method, %block, %line, %
DiscoveryProgressDialog.java100% (1/1)100% (1/1)100% (18/18)100% (6/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class DiscoveryProgressDialog100% (1/1)100% (1/1)100% (18/18)100% (6/6)
DiscoveryProgressDialog (Context): void 100% (1/1)100% (18/18)100% (6/6)

1/* This file is part of Aard Dictionary for Android <http://aarddict.org>.
2 * 
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 3
5 * as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 * GNU General Public License <http://www.gnu.org/licenses/gpl-3.0.txt>
11 * for more details.
12 * 
13 * Copyright (C) 2010 Igor Tkach
14*/
15 
16package aarddict.android;
17 
18import android.app.ProgressDialog;
19import android.content.Context;
20 
21final class DiscoveryProgressDialog extends ProgressDialog {        
22    DiscoveryProgressDialog(Context context) {
23        super(context);
24        setCancelable(false);
25        setIndeterminate(true);
26        setProgressStyle(ProgressDialog.STYLE_SPINNER);
27        setMessage(context.getString(R.string.msgLooking));            
28    }        
29}

[all classes][aarddict.android]
EMMA 0.0.0 (unsupported private build) (C) Vladimir Roubtsov