1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package com.xpn.xwiki.doc

File MetaDataDiff.java

 

Coverage histogram

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

Code metrics

0
15
8
1
77
47
8
0.53
1.88
8
1

Classes

Class Line # Actions
MetaDataDiff 22 15 0% 8 0
1.0100%
 

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 com.xpn.xwiki.doc;
21   
 
22    public class MetaDataDiff
23    {
24    private String field;
25   
26    private Object prevValue;
27   
28    private Object newValue;
29   
 
30  8 toggle public MetaDataDiff(String field, Object prevValue, Object newValue)
31    {
32  8 this.setField(field);
33  8 this.setPrevValue(prevValue);
34  8 this.setNewValue(newValue);
35    }
36   
 
37  4 toggle public String getField()
38    {
39  4 return this.field;
40    }
41   
 
42  8 toggle public void setField(String field)
43    {
44  8 this.field = field;
45    }
46   
 
47  3 toggle public Object getPrevValue()
48    {
49  3 return this.prevValue;
50    }
51   
 
52  8 toggle public void setPrevValue(Object prevvalue)
53    {
54  8 this.prevValue = prevvalue;
55    }
56   
 
57  3 toggle public Object getNewValue()
58    {
59  3 return this.newValue;
60    }
61   
 
62  8 toggle public void setNewValue(Object newValue)
63    {
64  8 this.newValue = newValue;
65    }
66   
 
67  4 toggle @Override
68    public String toString()
69    {
70  4 StringBuilder buf = new StringBuilder(this.field);
71  4 buf.append(": ");
72  4 buf.append(this.prevValue.toString());
73  4 buf.append(" \u21E8 ");
74  4 buf.append(this.newValue.toString());
75  4 return buf.toString();
76    }
77    }