Clover Coverage Report - XWiki Rendering - Parent POM 4.0-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Mar 12 2012 18:03:13 CET
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
9   71   5   3
4   39   0.56   3
3     1.67  
1    
 
  WikiModelParserUtils       Line # 37 9 0% 5 0 100% 1.0
 
  (97)
 
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.internal.parser.wikimodel;
21   
22    import java.io.StringReader;
23   
24    import org.xwiki.rendering.listener.InlineFilterListener;
25    import org.xwiki.rendering.listener.Listener;
26    import org.xwiki.rendering.listener.WrappingListener;
27    import org.xwiki.rendering.parser.ParseException;
28    import org.xwiki.rendering.parser.StreamParser;
29    import org.xwiki.rendering.util.ParserUtils;
30   
31    /**
32    * Methods for helping in parsing.
33    *
34    * @version $Id$
35    * @since 1.8M1
36    */
 
37    public class WikiModelParserUtils extends ParserUtils
38    {
 
39  119 toggle public void parseInline(StreamParser parser, String content, Listener listener) throws ParseException
40    {
41  119 WrappingListener inlineFilterListener = new InlineFilterListener()
42    {
43    private boolean foundWord = false;
44   
45    private boolean foundSpace = false;
46   
 
47  198 toggle @Override
48    public void onWord(String word)
49    {
50  198 if (foundWord) {
51  79 super.onWord(word);
52    } else {
53  119 foundWord = true;
54    }
55    }
56   
 
57  125 toggle @Override
58    public void onSpace()
59    {
60  125 if (foundSpace) {
61  6 super.onSpace();
62    } else {
63  119 foundSpace = true;
64    }
65    }
66    };
67  119 inlineFilterListener.setWrappedListener(listener);
68   
69  119 parser.parse(new StringReader("wikimarker " + content), inlineFilterListener);
70    }
71    }