1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.rendering.wikimodel.util

File SectionListener.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart2.png
81% of files have more coverage

Code metrics

0
0
9
1
99
31
9
-
0
9
1

Classes

Class Line # Actions
SectionListener 26 0 0% 9 8
0.1111111111.1%
 

Contributing tests

This file is covered by 1473 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.rendering.wikimodel.util;
21   
22    /**
23    * @version $Id: 1733b03253cfb9015d1f9b9383dfcbd6bd3eb1de $
24    * @since 4.0M1
25    */
 
26    public class SectionListener<T> implements ISectionListener<T>
27    {
28    /**
29    *
30    */
 
31  24823 toggle public SectionListener()
32    {
33    //
34    }
35   
36    /**
37    * @see ISectionListener#beginDocument(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
38    */
 
39  0 toggle public void beginDocument(IPos<T> pos)
40    {
41    //
42    }
43   
44    /**
45    * @see ISectionListener#beginSection(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
46    */
 
47  0 toggle public void beginSection(IPos<T> pos)
48    {
49    //
50    }
51   
52    /**
53    * @see ISectionListener#beginSectionContent(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
54    */
 
55  0 toggle public void beginSectionContent(IPos<T> pos)
56    {
57    //
58    }
59   
60    /**
61    * @see ISectionListener#beginSectionHeader(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
62    */
 
63  0 toggle public void beginSectionHeader(IPos<T> pos)
64    {
65    //
66    }
67   
68    /**
69    * @see ISectionListener#endDocument(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
70    */
 
71  0 toggle public void endDocument(IPos<T> pos)
72    {
73    //
74    }
75   
76    /**
77    * @see ISectionListener#endSection(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
78    */
 
79  0 toggle public void endSection(IPos<T> pos)
80    {
81    //
82    }
83   
84    /**
85    * @see ISectionListener#endSectionContent(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
86    */
 
87  0 toggle public void endSectionContent(IPos<T> pos)
88    {
89    //
90    }
91   
92    /**
93    * @see ISectionListener#endSectionHeader(org.xwiki.rendering.wikimodel.util.ISectionListener.IPos)
94    */
 
95  0 toggle public void endSectionHeader(IPos<T> pos)
96    {
97    //
98    }
99    }