Clover coverage report - Code Coverage for tapestry release 4.0-beta-6
Coverage timestamp: Wed Sep 7 2005 18:41:34 EDT
file stats: LOC: 79   Methods: 7
NCLOC: 37   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
BaseValidator.java - 80% 85.7% 83.3%
coverage coverage
 1    // Copyright 2005 The Apache Software Foundation
 2    //
 3    // Licensed under the Apache License, Version 2.0 (the "License");
 4    // you may not use this file except in compliance with the License.
 5    // You may obtain a copy of the License at
 6    //
 7    // http://www.apache.org/licenses/LICENSE-2.0
 8    //
 9    // Unless required by applicable law or agreed to in writing, software
 10    // distributed under the License is distributed on an "AS IS" BASIS,
 11    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12    // See the License for the specific language governing permissions and
 13    // limitations under the License.
 14   
 15    package org.apache.tapestry.form.validator;
 16   
 17    import org.apache.hivemind.util.PropertyUtils;
 18    import org.apache.tapestry.IMarkupWriter;
 19    import org.apache.tapestry.IRequestCycle;
 20    import org.apache.tapestry.form.FormComponentContributorContext;
 21    import org.apache.tapestry.form.IFormComponent;
 22   
 23    /**
 24    * Abstract implementation of {@link org.apache.tapestry.form.validator.Validator}.
 25    *
 26    * @author Howard Lewis Ship
 27    * @since 4.0
 28    */
 29   
 30    public abstract class BaseValidator implements Validator
 31    {
 32    private String _message;
 33   
 34  33 public String getMessage()
 35    {
 36  33 return _message;
 37    }
 38   
 39  16 public void setMessage(String message)
 40    {
 41  16 _message = message;
 42    }
 43   
 44  19 public BaseValidator()
 45    {
 46    }
 47   
 48  29 public BaseValidator(String initializer)
 49    {
 50  29 PropertyUtils.configureProperties(this, initializer);
 51    }
 52   
 53    /**
 54    * Returns false.
 55    */
 56   
 57  0 public boolean getAcceptsNull()
 58    {
 59  0 return false;
 60    }
 61   
 62    /**
 63    * Does nothing.
 64    */
 65   
 66  2 public void renderContribution(IMarkupWriter writer, IRequestCycle cycle,
 67    FormComponentContributorContext context, IFormComponent field)
 68    {
 69    }
 70   
 71    /**
 72    * Returns false. Subclasses may override.
 73    */
 74   
 75  1 public boolean isRequired()
 76    {
 77  1 return false;
 78    }
 79    }