EMMA Coverage Report (generated Sat Oct 08 11:41:37 CEST 2011)
[all classes][net.sf.jomic.comic]

COVERAGE SUMMARY FOR SOURCE FILE [ComicViewTransferHandler.java]

nameclass, %method, %block, %line, %
ComicViewTransferHandler.java100% (1/1)67%  (4/6)39%  (34/88)36%  (6.9/19)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ComicViewTransferHandler100% (1/1)67%  (4/6)39%  (34/88)36%  (6.9/19)
ComicViewTransferHandler (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
canImport (JComponent, DataFlavor []): boolean 0%   (0/1)0%   (0/39)0%   (0/9)
createTransferable (JComponent): Transferable 100% (1/1)68%  (17/25)76%  (3.1/4)
<static initializer> 100% (1/1)80%  (12/15)80%  (0.8/1)
ComicViewTransferHandler (): void 100% (1/1)100% (3/3)100% (2/2)
getSourceActions (JComponent): int 100% (1/1)100% (2/2)100% (1/1)

1// Jomic - a viewer for comic book archives.
2// Copyright (C) 2004-2011 Thomas Aglassinger
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program.  If not, see <http://www.gnu.org/licenses/>.
16package net.sf.jomic.comic;
17 
18import java.awt.datatransfer.DataFlavor;
19import java.awt.datatransfer.Transferable;
20 
21import javax.swing.JComponent;
22import javax.swing.TransferHandler;
23 
24/**
25 *  TransferHandler to support clipboard operations in a ComicView.
26 *
27 * @see       net.sf.jomic.comic.ComicView
28 * @author    Thomas Aglassinger
29 */
30public class ComicViewTransferHandler extends TransferHandler
31{
32    public ComicViewTransferHandler() {
33        super();
34    }
35 
36    public ComicViewTransferHandler(String property) {
37        super(property);
38    }
39 
40    public int getSourceActions(JComponent c) {
41        return COPY;
42    }
43 
44    public boolean canImport(JComponent component, DataFlavor[] flavors) {
45        assert component != null;
46        assert flavors != null;
47        boolean result = false;
48        int i = 0;
49 
50        while (!result && (i < flavors.length)) {
51            if (DataFlavor.imageFlavor.equals(flavors[i])) {
52                result = true;
53            } else {
54                i += 1;
55            }
56        }
57        return result;
58    }
59 
60    protected Transferable createTransferable(JComponent component) {
61        assert component != null;
62        assert component instanceof ComicView;
63        ComicView comicView = (ComicView) component;
64 
65        return new ComicViewTransferable(comicView);
66    }
67}

[all classes][net.sf.jomic.comic]
EMMA 2.0.4217 (C) Vladimir Roubtsov