Clover coverage report - Code Coverage for tapestry release 4.0-beta-8
Coverage timestamp: Fri Sep 23 2005 15:17:07 EDT
file stats: LOC: 49   Methods: 4
NCLOC: 22   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CreatorLocation.java - 0% 0% 0%
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.test;
 16   
 17    import org.apache.hivemind.Location;
 18    import org.apache.hivemind.Resource;
 19   
 20    /**
 21    * Fake {@link org.apache.hivemind.Location} used by {@link org.apache.tapestry.test.Creator} when
 22    * adding properties to a class.
 23    *
 24    * @author Howard Lewis Ship
 25    * @since 4.0
 26    */
 27    public class CreatorLocation implements Location
 28    {
 29  0 public String toString()
 30    {
 31  0 return "[Creator Location]";
 32    }
 33   
 34  0 public Resource getResource()
 35    {
 36  0 return null;
 37    }
 38   
 39  0 public int getLineNumber()
 40    {
 41  0 return 0;
 42    }
 43   
 44  0 public int getColumnNumber()
 45    {
 46  0 return 0;
 47    }
 48   
 49    }