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

File AbstractWikiEvent.java

 

Coverage histogram

../../../../img/srcFileCovDistChart8.png
54% of files have more coverage

Code metrics

0
3
4
1
74
23
4
1.33
0.75
4
1

Classes

Class Line # Actions
AbstractWikiEvent 31 3 0% 4 2
0.7142857371.4%
 

Contributing tests

This file is covered by 40 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.bridge.event;
21   
22    import org.xwiki.observation.event.AbstractFilterableEvent;
23    import org.xwiki.observation.event.filter.EventFilter;
24   
25    /**
26    * Base class for all wiki related {@link org.xwiki.observation.event.Event}.
27    *
28    * @version $Id: eb7140cbd432aebb0e6c50bf1607a8472880a3c1 $
29    * @since 3.0M1
30    */
 
31    public abstract class AbstractWikiEvent extends AbstractFilterableEvent implements WikiEvent
32    {
33    /**
34    * The version identifier for this Serializable class. Increment only if the <i>serialized</i> form of the class
35    * changes.
36    */
37    private static final long serialVersionUID = 1L;
38   
39    /**
40    * This event will match any other document event of the same type.
41    */
 
42  935 toggle public AbstractWikiEvent()
43    {
44    // Voluntarily empty, default constructor is called automatically.
45    }
46   
47    /**
48    * This event will match only events of the same type affecting the same document.
49    *
50    * @param wikiId the wiki identifier
51    */
 
52  220 toggle public AbstractWikiEvent(String wikiId)
53    {
54  220 super(wikiId);
55    }
56   
57    /**
58    * Constructor using a custom {@link EventFilter}.
59    *
60    * @param eventFilter the filter to use for matching events
61    */
 
62  0 toggle public AbstractWikiEvent(EventFilter eventFilter)
63    {
64  0 super(eventFilter);
65    }
66   
67    // WikiEvent
68   
 
69  36 toggle @Override
70    public String getWikiId()
71    {
72  36 return getEventFilter().getFilter();
73    }
74    }