Clover coverage report - JBind Project
Coverage timestamp: Fr Mai 28 2004 11:17:36 CEST
file stats: LOC: 39   Methods: 5
NCLOC: 21   Classes: 1
This license of Clover is provided to support the development of JBind only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover.
 
 Source file Conditionals Statements Methods TOTAL
Node.java - 40% 40% 40%
 1   
 /*
 2   
  * JBind
 3   
  *
 4   
  * Copyright (c) by Stefan Wachter. All rights reserved.
 5   
  *
 6   
  * Usage, modification, and redistribution is subject to license terms that are
 7   
  * available at 'http://www.jbind.org'. The JBind license is like the
 8   
  * 'Apache Software License V 1.1'.
 9   
  */
 10   
 package org.jbind.xml.schema.element;
 11   
 
 12   
 import org.jbind.xml.base.ILocation;
 13   
 
 14   
 public abstract class Node implements INode {
 15   
 
 16   
   private ILocation myLocation = null;
 17   
   private IElement myParent = null;
 18   
 
 19  154
   public Node() {
 20  154
     super();
 21   
   }
 22   
 
 23  0
   public IElement getParent_() {
 24  0
     return myParent;
 25   
   }
 26   
 
 27  0
   public void setParent_(IElement anElement) {
 28  0
     myParent = anElement;
 29   
   }
 30   
 
 31  0
   public ILocation getLocation() {
 32  0
     return myLocation;
 33   
   }
 34   
 
 35  154
   public void setLocation(ILocation aLocation) {
 36  154
     myLocation = aLocation;
 37   
   }
 38   
 }
 39