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

File ConflictAnswer.java

 

Coverage histogram

../../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
4
3
1
76
22
3
0.75
1.33
3
1

Classes

Class Line # Actions
ConflictAnswer 32 4 0% 3 0
1.0100%
 

Contributing tests

This file is covered by 1 test. .

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.extension.xar.internal.question;
21   
22    import java.io.Serializable;
23   
24    import org.xwiki.extension.xar.question.ConflictQuestion.GlobalAction;
25   
26    /**
27    * The answer to a {@link org.xwiki.extension.xar.question.ConflictQuestion}.
28    *
29    * @version $Id: 8f6f960f96f6fc5b4081c69cd4336655156e39d4 $
30    * @since 7.1RC1
31    */
 
32    public class ConflictAnswer implements Serializable
33    {
34    /**
35    * Serialization identifier.
36    */
37    private static final long serialVersionUID = 1L;
38   
39    /**
40    * @see org.xwiki.extension.xar.question.ConflictQuestion#getGlobalAction()
41    */
42    private final GlobalAction globalAction;
43   
44    /**
45    * @see org.xwiki.extension.xar.question.ConflictQuestion#isAlways()
46    */
47    private final boolean always;
48   
49    /**
50    * Creates a new answer.
51    *
52    * @param globalAction same as {@link org.xwiki.extension.xar.question.ConflictQuestion#getGlobalAction()}
53    * @param always same as {@link org.xwiki.extension.xar.question.ConflictQuestion#isAlways()}
54    */
 
55  3 toggle public ConflictAnswer(GlobalAction globalAction, boolean always)
56    {
57  3 this.globalAction = globalAction;
58  3 this.always = always;
59    }
60   
61    /**
62    * @return same as {@link org.xwiki.extension.xar.question.ConflictQuestion#getGlobalAction()}
63    */
 
64  2 toggle public GlobalAction getGlobalAction()
65    {
66  2 return globalAction;
67    }
68   
69    /**
70    * @return same as {@link org.xwiki.extension.xar.question.ConflictQuestion#isAlways()}
71    */
 
72  2 toggle public boolean isAlways()
73    {
74  2 return always;
75    }
76    }