Clover coverage report - Java Gui Builder - Code Coverage
Coverage timestamp: ven. juil. 11 2003 11:10:09 EDT
file stats: LOC: 57   Methods: 2
NCLOC: 25   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ConstructorTagHandler.java - 100% 100% 100%
coverage
 1   
 /**
 2   
  * Java Gui Builder - A library to build GUIs using an XML file.
 3   
  * Copyright 2002, 2003 (C) François Beausoleil
 4   
  *
 5   
  * This library is free software; you can redistribute it and/or
 6   
  * modify it under the terms of the GNU Lesser General Public
 7   
  * License as published by the Free Software Foundation; either
 8   
  * version 2.1 of the License, or (at your option) any later version.
 9   
  *
 10   
  * This library is distributed in the hope that it will be useful,
 11   
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12   
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 13   
  * Lesser General Public License for more details.
 14   
  *
 15   
  * You should have received a copy of the GNU Lesser General Public
 16   
  * License along with this library; if not, write to the Free Software
 17   
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 18   
  */
 19   
 
 20   
 package jgb.handlers.swing;
 21   
 
 22   
 import jgb.builder.TagHandler;
 23   
 import jgb.builder.utils.ConstructorCall;
 24   
 import org.xml.sax.SAXException;
 25   
 
 26   
 import java.util.Map;
 27   
 
 28   
 /**
 29   
  * @since 0.2a
 30   
  * @author Francois Beausoleil, <a href="mailto:fbos@users.sourceforge.net">fbos@users.sourceforge.net</a>
 31   
  */
 32   
 public class ConstructorTagHandler extends AbstractTagHandler {
 33  14
     protected void enterElement(Map atts) throws SAXException {
 34   
     }
 35   
 
 36  14
     public void exitElement() throws SAXException {
 37  14
         ConstructorCall cc = (ConstructorCall)tagContext.get(TagHandler.CURRENT_PARM_ACC_KEY);
 38  14
         tagContext.remove(TagHandler.CURRENT_PARM_ACC_KEY);
 39   
 
 40  14
         Object createdObject = null;
 41  14
         try {
 42  14
             createdObject = cc.call();
 43   
         } catch (Exception e) {
 44  1
             StringBuffer msg = new StringBuffer();
 45  1
             msg.append("Unable to instantiate object with parameters: (").append(cc).append(")");
 46   
 
 47  1
             throwParsingException(msg.toString(), e);
 48   
         }
 49   
 
 50  13
         String objectId = (String)tagContext.get(TagHandler.CURRENT_OBJECT_ID_KEY);
 51  13
         Object currentObject = createdObject;
 52   
 
 53  13
         pushCurrentObject(objectId, currentObject);
 54  13
         putObject(objectId, currentObject);
 55   
     }
 56   
 }
 57