[jsword-svn] r1933 - trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml
dmsmith at crosswire.org
dmsmith at crosswire.org
Mon Feb 23 20:13:27 MST 2009
Author: dmsmith
Date: 2009-02-23 20:13:27 -0700 (Mon, 23 Feb 2009)
New Revision: 1933
Removed:
trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/ColTag.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/RowTag.java
Log:
final part of ThML change
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/ColTag.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/ColTag.java 2009-02-24 03:12:33 UTC (rev 1932)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/ColTag.java 2009-02-24 03:13:27 UTC (rev 1933)
@@ -1,60 +0,0 @@
-/**
- * Distribution License:
- * JSword is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License, version 2.1 as published by
- * the Free Software Foundation. This program is distributed in the hope
- * that it will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU Lesser General Public License for more details.
- *
- * The License is available on the internet at:
- * http://www.gnu.org/copyleft/lgpl.html
- * or by writing to:
- * Free Software Foundation, Inc.
- * 59 Temple Place - Suite 330
- * Boston, MA 02111-1307, USA
- *
- * Copyright: 2005
- * The copyright to this program is held by it's authors.
- *
- * ID: $Id$
- */
-package org.crosswire.jsword.book.filter.thml;
-
-import org.crosswire.jsword.book.OSISUtil;
-import org.jdom.Element;
-import org.xml.sax.Attributes;
-
-/**
- * THML Tag to process the table column element.
- *
- * @see gnu.lgpl.License for license details.
- * The copyright to this program is held by it's authors.
- * @author Joe Walker [joe at eireneh dot com]
- */
-public class ColTag extends AbstractTag
-{
- /* (non-Javadoc)
- * @see org.crosswire.jsword.book.filter.thml.Tag#getTagName()
- */
- public String getTagName()
- {
- return "col"; //$NON-NLS-1$
- }
-
- /* (non-Javadoc)
- * @see org.crosswire.jsword.book.filter.thml.Tag#processTag(org.jdom.Element, org.xml.sax.Attributes)
- */
- /* @Override */
- public Element processTag(Element ele, Attributes attrs)
- {
- Element hi = OSISUtil.factory().createCell();
-
- if (ele != null)
- {
- ele.addContent(hi);
- }
-
- return hi;
- }
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/RowTag.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/RowTag.java 2009-02-24 03:12:33 UTC (rev 1932)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/filter/thml/RowTag.java 2009-02-24 03:13:27 UTC (rev 1933)
@@ -1,60 +0,0 @@
-/**
- * Distribution License:
- * JSword is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License, version 2.1 as published by
- * the Free Software Foundation. This program is distributed in the hope
- * that it will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU Lesser General Public License for more details.
- *
- * The License is available on the internet at:
- * http://www.gnu.org/copyleft/lgpl.html
- * or by writing to:
- * Free Software Foundation, Inc.
- * 59 Temple Place - Suite 330
- * Boston, MA 02111-1307, USA
- *
- * Copyright: 2005
- * The copyright to this program is held by it's authors.
- *
- * ID: $Id$
- */
-package org.crosswire.jsword.book.filter.thml;
-
-import org.crosswire.jsword.book.OSISUtil;
-import org.jdom.Element;
-import org.xml.sax.Attributes;
-
-/**
- * THML Tag to process the table row element.
- *
- * @see gnu.lgpl.License for license details.
- * The copyright to this program is held by it's authors.
- * @author Joe Walker [joe at eireneh dot com]
- */
-public class RowTag extends AbstractTag
-{
- /* (non-Javadoc)
- * @see org.crosswire.jsword.book.filter.thml.Tag#getTagName()
- */
- public String getTagName()
- {
- return "row"; //$NON-NLS-1$
- }
-
- /* (non-Javadoc)
- * @see org.crosswire.jsword.book.filter.thml.Tag#processTag(org.jdom.Element, org.xml.sax.Attributes)
- */
- /* @Override */
- public Element processTag(Element ele, Attributes attrs)
- {
- Element hi = OSISUtil.factory().createRow();
-
- if (ele != null)
- {
- ele.addContent(hi);
- }
-
- return hi;
- }
-}
More information about the jsword-svn
mailing list