1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.filter.output

File DefaultWriterOutputTarget.java

 

Coverage histogram

../../../../img/srcFileCovDistChart6.png
69% of files have more coverage

Code metrics

0
4
5
1
61
30
5
1.25
0.8
5
1

Classes

Class Line # Actions
DefaultWriterOutputTarget 29 4 0% 5 4
0.555555655.6%
 

Contributing tests

This file is covered by 16 tests. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.filter.output;
21   
22    import java.io.IOException;
23    import java.io.Writer;
24   
25    /**
26    * @version $Id: ad225a3e2cea3a3d818bce6476ffba970c6e795e $
27    * @since 6.2M1
28    */
 
29    public class DefaultWriterOutputTarget implements WriterOutputTarget
30    {
31    private final Writer writer;
32   
 
33  6306 toggle public DefaultWriterOutputTarget(Writer writer)
34    {
35  6306 this.writer = writer;
36    }
37   
 
38  0 toggle @Override
39    public boolean restartSupported()
40    {
41  0 return false;
42    }
43   
 
44  6306 toggle @Override
45    public Writer getWriter()
46    {
47  6306 return this.writer;
48    }
49   
 
50  6306 toggle @Override
51    public void close() throws IOException
52    {
53    // Closing the writer is the responsibility of the caller
54    }
55   
 
56  0 toggle @Override
57    public String toString()
58    {
59  0 return getWriter().toString();
60    }
61    }