Clover coverage report - Code Coverage for hivemind release 1.0-beta-2
Coverage timestamp: Sun Aug 1 2004 14:03:45 EDT
file stats: LOC: 59   Methods: 5
NCLOC: 31   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
ObjectOrdering.java - 100% 100% 100%
coverage
 1   
 //  Copyright 2004 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.hivemind.order;
 16   
 
 17   
 /**
 18   
  * Used by an {@link org.apache.hivemind.order.Orderer} to organize
 19   
  * a single object and its pre- and post-requisites.
 20   
  * 
 21   
  * @author Howard Lewis Ship
 22   
  */
 23   
 class ObjectOrdering
 24   
 {
 25   
     private String _name;
 26   
     private Object _object;
 27   
     private String _prereqs;
 28   
     private String _postreqs;
 29   
 
 30  73
     ObjectOrdering(Object object, String name, String prereqs, String postreqs)
 31   
     {
 32  73
         _object = object;
 33  73
         _name = name;
 34  73
         _prereqs = prereqs;
 35  73
         _postreqs = postreqs;
 36   
     }
 37   
 
 38  154
     public String getName()
 39   
     {
 40  154
         return _name;
 41   
     }
 42   
 
 43  82
     public Object getObject()
 44   
     {
 45  82
         return _object;
 46   
     }
 47   
 
 48  146
     public String getPostreqs()
 49   
     {
 50  146
         return _postreqs;
 51   
     }
 52   
 
 53  146
     public String getPrereqs()
 54   
     {
 55  146
         return _prereqs;
 56   
     }
 57   
 
 58   
 }
 59