Clover coverage report - Code Coverage for tapestry release 4.0-rc-2
Coverage timestamp: Sat Dec 17 2005 09:39:46 PST
file stats: LOC: 72   Methods: 6
NCLOC: 45   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
FormMessages.java - 100% 100% 100%
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.HiveMind;
 18    import org.apache.hivemind.impl.MessageFormatter;
 19    import org.apache.tapestry.IComponent;
 20   
 21    /**
 22    * @author Howard M. Lewis Ship
 23    * @since 4.0
 24    */
 25    class FormMessages
 26    {
 27    private final static MessageFormatter _formatter = new MessageFormatter(FormMessages.class);
 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  1 static String fieldAlreadyPrerendered(IComponent field)
 63    {
 64  1 return _formatter.format("field-already-prerendered", field);
 65    }
 66   
 67  1 static String linkSubmitMayNotNest(IComponent inner, IComponent outer)
 68    {
 69  1 return _formatter.format("link-submit-may-not-nest", inner.getExtendedId(), outer
 70    .getExtendedId(), HiveMind.getLocationString(outer));
 71    }
 72    }