Clover coverage report - Code Coverage for tapestry release 4.0-alpha-3
Coverage timestamp: Mon May 16 2005 09:05:49 EDT
file stats: LOC: 66   Methods: 5
NCLOC: 40   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
FormMessages.java - 80% 80% 80%
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;
 16   
 
 17   
 import org.apache.hivemind.impl.MessageFormatter;
 18   
 import org.apache.tapestry.IComponent;
 19   
 
 20   
 /**
 21   
  * @author Howard M. Lewis Ship
 22   
  * @since 4.0
 23   
  */
 24   
 class FormMessages
 25   
 {
 26   
     protected static MessageFormatter _formatter = new MessageFormatter(FormMessages.class,
 27   
             "FormStrings");
 28   
 
 29  1
     static String formTooManyIds(IComponent form, int actualCount, IComponent component)
 30   
     {
 31  1
         return _formatter.format(
 32   
                 "form-too-many-ids",
 33   
                 form.getExtendedId(),
 34   
                 new Integer(actualCount),
 35   
                 component.getExtendedId());
 36   
     }
 37   
 
 38  2
     static String formIdMismatch(IComponent form, int mismatchIndex, String expectedId,
 39   
             String actualId, IComponent component)
 40   
     {
 41  2
         return _formatter.format("form-id-mismatch", new Object[]
 42   
         { form.getExtendedId(), new Integer(mismatchIndex + 1), expectedId, actualId,
 43   
                 component.getExtendedId() });
 44   
     }
 45   
 
 46  1
     static String formTooFewIds(IComponent form, int remainingCount, String nextExpectedId)
 47   
     {
 48  1
         return _formatter.format("form-too-few-ids", form.getExtendedId(), new Integer(
 49   
                 remainingCount), nextExpectedId);
 50   
     }
 51   
 
 52  1
     static String encodingTypeContention(IComponent form, String establishedEncodingType,
 53   
             String newEncodingType)
 54   
     {
 55  1
         return _formatter.format(
 56   
                 "encoding-type-contention",
 57   
                 form.getExtendedId(),
 58   
                 establishedEncodingType,
 59   
                 newEncodingType);
 60   
     }
 61   
 
 62  0
     static String fieldAlreadyPrerendered(IComponent field)
 63   
     {
 64  0
         return _formatter.format("field-already-prerenderer", field);
 65   
     }
 66   
 }