Coverage Report - org.crosswire.jsword.book.filter.thml.AliasTag
 
Classes in this File Line Coverage Branch Coverage Complexity
AliasTag
0%
0/6
N/A
1
 
 1  
 /**
 2  
  * Distribution License:
 3  
  * JSword is free software; you can redistribute it and/or modify it under
 4  
  * the terms of the GNU Lesser General Public License, version 2.1 or later
 5  
  * as published by the Free Software Foundation. This program is distributed
 6  
  * in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 7  
  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 8  
  * See the GNU Lesser General Public License for more details.
 9  
  *
 10  
  * The License is available on the internet at:
 11  
  *      http://www.gnu.org/copyleft/lgpl.html
 12  
  * or by writing to:
 13  
  *      Free Software Foundation, Inc.
 14  
  *      59 Temple Place - Suite 330
 15  
  *      Boston, MA 02111-1307, USA
 16  
  *
 17  
  * © CrossWire Bible Society, 2005 - 2016
 18  
  *
 19  
  */
 20  
 package org.crosswire.jsword.book.filter.thml;
 21  
 
 22  
 import org.crosswire.jsword.book.Book;
 23  
 import org.crosswire.jsword.passage.Key;
 24  
 import org.jdom2.Element;
 25  
 import org.xml.sax.Attributes;
 26  
 
 27  
 /**
 28  
  * THML Tag to process the bold element.
 29  
  * 
 30  
  * @see gnu.lgpl.License The GNU Lesser General Public License for details.
 31  
  * @author Joe Walker
 32  
  */
 33  
 public class AliasTag extends AbstractTag {
 34  
     /**
 35  
      * simple ctor
 36  
      * @param alias 
 37  
      * @param tag 
 38  
      */
 39  0
     public AliasTag(String alias, Tag tag) {
 40  0
         this.alias = alias;
 41  0
         this.tag = tag;
 42  0
     }
 43  
 
 44  
     /* (non-Javadoc)
 45  
      * @see org.crosswire.jsword.book.filter.thml.Tag#getTagName()
 46  
      */
 47  
     public String getTagName() {
 48  0
         return alias;
 49  
     }
 50  
 
 51  
     @Override
 52  
     public Element processTag(Book book, Key key, Element ele, Attributes attrs) {
 53  0
         return tag.processTag(book, key, ele, attrs);
 54  
     }
 55  
 
 56  
     /**
 57  
      * The tag we are aliasing to
 58  
      */
 59  
     private Tag tag;
 60  
 
 61  
     /**
 62  
      * The alias that we are using for the other tag
 63  
      */
 64  
     private String alias;
 65  
 }