Clover coverage report - Java Gui Builder - Code Coverage
Coverage timestamp: ven. juil. 11 2003 11:10:09 EDT
file stats: LOC: 43   Methods: 2
NCLOC: 14   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
RefTagHandler.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 org.xml.sax.SAXException;
 24   
 
 25   
 import java.util.Map;
 26   
 
 27   
 /**
 28   
  * @since 0.1a
 29   
  * @author Francois Beausoleil, <a href="mailto:fbos@users.sourceforge.net">fbos@users.sourceforge.net</a>
 30   
  */
 31   
 public class RefTagHandler extends AbstractValueTagHandler {
 32  2
     public void enterElement(Map atts) throws SAXException {
 33  2
         Map objects = (Map)tagContext.get(TagHandler.OBJECTS_MAP_KEY);
 34  2
         String refid = (String)atts.get(ATTR_REFID);
 35  2
         Object value = objects.get(refid);
 36   
 
 37  2
         updateContextParameters(value.getClass(), value);
 38   
     }
 39   
 
 40  1
     protected void exitElement() throws SAXException {
 41   
     }
 42   
 }
 43