Clover coverage report - QedeqKernelSe Coverage Report
Coverage timestamp: Do Mai 10 2007 03:16:40 CEST
file stats: LOC: 85   Methods: 7
NCLOC: 34   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
FormulaVo.java 100% 100% 100% 100%
coverage
 1    /* $Id: FormulaVo.java,v 1.3 2007/05/10 00:37:50 m31 Exp $
 2    *
 3    * This file is part of the project "Hilbert II" - http://www.qedeq.org
 4    *
 5    * Copyright 2000-2007, Michael Meyling <mime@qedeq.org>.
 6    *
 7    * "Hilbert II" is free software; you can redistribute
 8    * it and/or modify it under the terms of the GNU General Public
 9    * License as published by the Free Software Foundation; either
 10    * version 2 of the License, or (at your option) any later version.
 11    *
 12    * This program is distributed in the hope that it will be useful,
 13    * but WITHOUT ANY WARRANTY; without even the implied warranty of
 14    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 15    * GNU General Public License for more details.
 16    */
 17   
 18    package org.qedeq.kernel.dto.module;
 19   
 20    import org.qedeq.kernel.base.list.Element;
 21    import org.qedeq.kernel.base.module.Formula;
 22    import org.qedeq.kernel.utility.EqualsUtility;
 23   
 24   
 25    /**
 26    * Wraps a formula. Such an object is build out of
 27    * {@link org.qedeq.kernel.base.list.Element}s.
 28    *
 29    * @version $Revision: 1.3 $
 30    * @author Michael Meyling
 31    */
 32    public class FormulaVo implements Formula {
 33   
 34    /** Formula. */
 35    private Element element;
 36   
 37    /**
 38    * Constructs a formula.
 39    *
 40    * @param element Element that should be a formula.
 41    */
 42  592 public FormulaVo(final Element element) {
 43  592 this.element = element;
 44    }
 45   
 46    /**
 47    * Empty constructor.
 48    */
 49  659 public FormulaVo() {
 50    // nothing to do
 51    }
 52   
 53    /**
 54    * Set formula.
 55    *
 56    * @param element Formula.
 57    */
 58  651 public final void setElement(final Element element) {
 59  651 this.element = element;
 60    }
 61   
 62  59491 public final Element getElement() {
 63  59491 return element;
 64    }
 65   
 66  278 public boolean equals(final Object obj) {
 67  278 if (!(obj instanceof FormulaVo)) {
 68  11 return false;
 69    }
 70  267 final FormulaVo other = (FormulaVo) obj;
 71  267 return EqualsUtility.equals(getElement(), other.getElement());
 72    }
 73   
 74  257 public int hashCode() {
 75  257 return (getElement() != null ? getElement().hashCode() : 0);
 76    }
 77   
 78  180 public String toString() {
 79  180 if (getElement() != null) {
 80  168 return getElement().toString();
 81    }
 82  12 return "";
 83    }
 84   
 85    }