Coverage Report - net.sourceforge.combean.samples.simplegraphs.DirectedPath
 
Classes in this File Line Coverage Branch Coverage Complexity
DirectedPath
100%
8/8
100%
4/4
2
 
 1  
 /*
 2  
     This file is part of Combean.
 3  
 
 4  
     Combean is free software; you can redistribute it and/or modify
 5  
     it under the terms of the GNU General Public License as published by
 6  
     the Free Software Foundation; either version 2 of the License, or
 7  
     (at your option) any later version.
 8  
 
 9  
     Combean is distributed in the hope that it will be useful,
 10  
     but WITHOUT ANY WARRANTY; without even the implied warranty of
 11  
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 12  
     GNU General Public License for more details.
 13  
 
 14  
     You should have received a copy of the GNU General Public License
 15  
     along with Combean; if not, write to the Free Software
 16  
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 17  
 */
 18  
 /*
 19  
  * Created on 10.02.2005
 20  
  *
 21  
  */
 22  
 package net.sourceforge.combean.samples.simplegraphs;
 23  
 
 24  
 
 25  
 /**
 26  
  * @author schickin
 27  
  *
 28  
  */
 29  
 public class DirectedPath extends SimpleNumberGraph {
 30  
 
 31  
     /**
 32  
      * @param size
 33  
      */
 34  
     public DirectedPath(int size) {
 35  48
         super(size);
 36  48
     }
 37  
 
 38  
     /* (non-Javadoc)
 39  
      * @see net.sourceforge.combean.samples.simplegraphs.NumberGraph#calcNextNode(int, int)
 40  
      */
 41  
     protected int calcNextNode(int sourceNodeNum, int minNodeNum) {
 42  
                 
 43  438
                 int result = NOSUCHNODE;
 44  
                 
 45  438
         if (minNodeNum <= sourceNodeNum+1) {
 46  312
                         result = sourceNodeNum+1;
 47  
         }
 48  
         
 49  438
         if (result >= getNumNodes()) {
 50  42
                 result = NOSUCHNODE;
 51  
         }
 52  
         
 53  438
         return result;
 54  
     }
 55  
 
 56  
 }