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

COVERAGE SUMMARY FOR SOURCE FILE [ScrollXY.java]

nameclass, %method, %block, %line, %
ScrollXY.java100% (1/1)33%  (1/3)31%  (9/29)57%  (4/7)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ScrollXY100% (1/1)33%  (1/3)31%  (9/29)57%  (4/7)
ScrollXY (): void 0%   (0/1)0%   (0/3)0%   (0/2)
toString (): String 0%   (0/1)0%   (0/17)0%   (0/1)
ScrollXY (int, int): void 100% (1/1)100% (9/9)100% (4/4)

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) 2011 Igor Tkach
14*/
15 
16package aarddict.android;
17 
18import java.io.Serializable;
19 
20public class ScrollXY implements Serializable {
21        int x;
22        int y;
23        
24        public ScrollXY() {
25        }
26        
27        public ScrollXY(int x, int y) {
28                this.x = x;
29                this.y = y;
30        }        
31        
32        @Override
33        public String toString() {
34                return String.format("ScrollXY(%d, %d)", x, y);
35        }
36}

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