Clover coverage report - JBind Project
Coverage timestamp: Fr Mai 28 2004 11:17:36 CEST
file stats: LOC: 34   Methods: 5
NCLOC: 18   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
ASTUnmodifiedClassDeclaration.java - 100% 100% 100%
 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.javaParser;
 11   
 
 12   
 public class ASTUnmodifiedClassDeclaration {
 13   
 
 14   
   private ASTName myExtends = null;
 15   
   private ASTNameList myImplements = null;
 16   
 
 17   
 
 18  4
   public ASTUnmodifiedClassDeclaration() {}
 19   
 
 20  4
   public ASTName getExtends() {
 21  4
     return myExtends;
 22   
   }
 23  4
   public void setExtends(ASTName aName) {
 24  4
     myExtends = aName;
 25   
   }
 26   
 
 27  4
   public ASTNameList getImplements() {
 28  4
     return myImplements;
 29   
   }
 30  4
   public void setImplements(ASTNameList aNameList) {
 31  4
     myImplements = aNameList;
 32   
   }
 33   
 }
 34