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

File SpaceEditorBindingsSource.java

 

Coverage histogram

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

Code metrics

4
9
3
1
70
39
5
0.56
3
3
1.67

Classes

Class Line # Actions
SpaceEditorBindingsSource 40 9 0% 5 4
0.7575%
 

Contributing tests

No tests hitting this source file were found.

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.edit.internal;
21   
22    import javax.inject.Inject;
23    import javax.inject.Named;
24    import javax.inject.Singleton;
25   
26    import org.xwiki.bridge.DocumentAccessBridge;
27    import org.xwiki.component.annotation.Component;
28    import org.xwiki.model.reference.DocumentReference;
29    import org.xwiki.model.reference.SpaceReference;
30   
31    /**
32    * Configuration Source that looks for editor bindings in the preferences page of the current space.
33    *
34    * @version $Id: 512e58e50a43a87afe21c5229dbd63752c9cb805 $
35    * @since 8.2RC1
36    */
37    @Component
38    @Named("editorBindings/space")
39    @Singleton
 
40    public class SpaceEditorBindingsSource extends AbstractEditorBindingsSource
41    {
42    @Inject
43    private DocumentAccessBridge documentAccessBridge;
44   
 
45  204 toggle @Override
46    protected String getCacheId()
47    {
48  204 return "configuration.editorBindings.space";
49    }
50   
 
51  586 toggle @Override
52    protected String getCacheKeyPrefix()
53    {
54  586 DocumentReference currentDocumentReference = this.documentAccessBridge.getCurrentDocumentReference();
55  586 if (currentDocumentReference != null) {
56  586 return this.referenceSerializer.serialize(currentDocumentReference.getParent());
57    }
58  0 return null;
59    }
60   
 
61  164 toggle @Override
62    protected DocumentReference getDocumentReference()
63    {
64  164 DocumentReference currentDocumentReference = this.documentAccessBridge.getCurrentDocumentReference();
65  164 if (currentDocumentReference != null) {
66  164 return new DocumentReference("WebPreferences", (SpaceReference) currentDocumentReference.getParent());
67    }
68  0 return null;
69    }
70    }