Clover coverage report - JBind Project
Coverage timestamp: Fr Mai 28 2004 11:17:36 CEST
file stats: LOC: 41   Methods: 1
NCLOC: 22   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
ACParams.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.xml.schema.element;
 11   
 
 12   
 import java.util.Map;
 13   
 
 14   
 import org.jbind.xml.base.ILocation;
 15   
 import org.jbind.xml.schema.instantiation.ISchemaElement;
 16   
 
 17   
 /**
 18   
  * Attribute creation parameters.
 19   
  */
 20   
 public class ACParams {
 21   
 
 22   
   public String qName = null;
 23   
   public String namespace = null;
 24   
   public String localName = null;
 25   
   public String value = null;
 26   
   public ILocation location = null;
 27   
   public Map prefixMappings = null;
 28   
   public ISchemaElement schemaElement = null;
 29   
 
 30  7304
   public ACParams(String aQName, String aNamespace, String aLocalName, String aValue, ILocation aLocation, Map aPrefixMappings, ISchemaElement aSchemaElement) {
 31  7304
     qName = aQName;
 32  7304
     namespace = aNamespace;
 33  7304
     localName = aLocalName;
 34  7304
     value = aValue;
 35  7304
     location = aLocation;
 36  7304
     prefixMappings = aPrefixMappings;
 37  7304
     schemaElement = aSchemaElement;
 38   
   }
 39   
 
 40   
 }
 41