Clover coverage report - JBind Project
Coverage timestamp: Fr Mai 28 2004 11:17:36 CEST
file stats: LOC: 67   Methods: 11
NCLOC: 42   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
SourceInfo.java - 0% 0% 0%
 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 java.util.Map;
 13   
 
 14   
 import org.jbind.xml.base.IAttribute;
 15   
 import org.jbind.xml.base.ILocation;
 16   
 import org.jbind.xml.core.cmp.IAnnotation;
 17   
 import org.jbind.xml.core.cmp.ISourceInfo;
 18   
 
 19   
 public class SourceInfo implements ISourceInfo {
 20   
 
 21   
   private IElement myElement;
 22   
 
 23  0
   public SourceInfo(IElement anElement) {
 24  0
     myElement = anElement;
 25   
   }
 26   
 
 27  0
   public ILocation getLocation() {
 28  0
     return myElement.getLocation();
 29   
   }
 30   
 
 31  0
   public boolean isTopLevelComponent() {
 32  0
     return myElement.isTopLevelComponent();
 33   
   }
 34   
 
 35  0
   public String getLocalStringBindingAttribute(String aName) {
 36  0
     return myElement.getLocalStringBindingAttribute(aName);
 37   
   }
 38   
 
 39  0
   public IAttribute getLocalBindingAttribute(String aName) {
 40  0
     return myElement.getLocalBindingAttribute(aName);
 41   
   }
 42   
 
 43  0
   public String getDefaultedLocalStringBindingAttribute(String aName) {
 44  0
     return myElement.getDefaultedLocalStringBindingAttribute(aName);
 45   
   }
 46   
 
 47  0
   public IAttribute getDefaultedLocalBindingAttribute(String aName) {
 48  0
     return myElement.getDefaultedLocalBindingAttribute(aName);
 49   
   }
 50   
 
 51  0
   public String getStringBindingAttribute(String aName) {
 52  0
     return myElement.getStringBindingAttribute(aName);
 53   
   }
 54   
 
 55  0
   public IAttribute getBindingAttribute(String aName) {
 56  0
     return myElement.getBindingAttribute(aName);
 57   
   }
 58   
 
 59  0
   public IAnnotation getAnnotation() {
 60  0
     return myElement.getAnnotation();
 61   
   }
 62   
 
 63  0
   public Map getPrefixToNamespaceMapping() {
 64  0
     return myElement.getPrefixToNamespaceMapping();
 65   
   }
 66   
 }
 67