Clover coverage report - JBind Project
Coverage timestamp: Fr Mai 28 2004 11:17:36 CEST
file stats: LOC: 40   Methods: 6
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
SimpleExtensionDerivation.java - 80% 66,7% 72,7%
 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.IRef;
 13   
 import org.jbind.xml.schema.instantiation.IJobRefs;
 14   
 
 15   
 public class SimpleExtensionDerivation extends SimpleDerivation implements ISimpleExtensionDerivation {
 16   
 
 17  23
   public SimpleExtensionDerivation(CreationParams aCreationParams) {
 18  23
     super(aCreationParams);
 19   
   }
 20   
 
 21  23
   public boolean getIsExtension() {
 22  23
     return true;
 23   
   }
 24   
 
 25  29
   public IRef getInlinedBaseAttribute() {
 26  29
     return null;
 27   
   }
 28   
 
 29  23
   public IRef getEffectiveBaseAttribute() {
 30  23
     return getBaseAttribute();
 31   
   }
 32   
 
 33  0
   public ISimpleTypeDef getSimpleTypeDef() {
 34  0
     return null;
 35   
   }
 36   
 
 37  0
   public void collectRefsForCreation(IJobRefs aJobRefs) {}
 38   
 
 39   
 }
 40