[jsword-svn]
jsword/java/jsword/org/crosswire/jsword/book/filter/gbf s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Mon May 16 17:43:18 MST 2005
Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf
In directory www.crosswire.org:/tmp/cvs-serv23836/java/jsword/org/crosswire/jsword/book/filter/gbf
Modified Files:
TagBuilder.java GBFTagBuilders.java GBFFilter.java
GBFTags.java AbstractTag.java Msg.java Tag.java
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.
Index: Tag.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/Tag.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Tag.java 10 May 2005 02:39:23 -0000 1.6
--- Tag.java 17 May 2005 00:43:16 -0000 1.7
***************
*** 27,31 ****
* GBF Tag interface.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 27,31 ----
* GBF Tag interface.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
***************
*** 36,39 ****
* Sub-classes should implement this method to generate OSIS Object
*/
! public void updateOsisStack(LinkedList osisStack);
}
--- 36,39 ----
* Sub-classes should implement this method to generate OSIS Object
*/
! void updateOsisStack(LinkedList osisStack);
}
Index: Msg.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/Msg.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Msg.java 10 May 2005 02:39:23 -0000 1.10
--- Msg.java 17 May 2005 00:43:16 -0000 1.11
***************
*** 27,35 ****
* Compile safe Msg resource settings.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
! class Msg extends MsgBase
{
static final Msg NAME_JESUS = new Msg("RedLetterStartTagBuilder.NameJesus"); //$NON-NLS-1$
--- 27,35 ----
* Compile safe Msg resource settings.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
! final class Msg extends MsgBase
{
static final Msg NAME_JESUS = new Msg("RedLetterStartTagBuilder.NameJesus"); //$NON-NLS-1$
Index: AbstractTag.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/AbstractTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AbstractTag.java 10 May 2005 02:39:23 -0000 1.3
--- AbstractTag.java 17 May 2005 00:43:16 -0000 1.4
***************
*** 25,29 ****
* A Tag that has a tagname from the input.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author DM Smith [ dmsmith555 at yahoo dot com]
--- 25,29 ----
* A Tag that has a tagname from the input.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author DM Smith [ dmsmith555 at yahoo dot com]
Index: TagBuilder.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/TagBuilder.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TagBuilder.java 10 May 2005 02:39:23 -0000 1.3
--- TagBuilder.java 17 May 2005 00:43:16 -0000 1.4
***************
*** 25,29 ****
* A class that packages start and end Tags together.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 25,29 ----
* A class that packages start and end Tags together.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
***************
*** 37,40 ****
* @return a new tag or null if the name isn't one we know about
*/
! public abstract Tag createTag(String name);
}
--- 37,40 ----
* @return a new tag or null if the name isn't one we know about
*/
! Tag createTag(String name);
}
Index: GBFTagBuilders.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/GBFTagBuilders.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** GBFTagBuilders.java 10 May 2005 02:39:23 -0000 1.3
--- GBFTagBuilders.java 17 May 2005 00:43:16 -0000 1.4
***************
*** 54,63 ****
* found is: <a href="http://ebible.org/bible/gbf.htm">http://ebible.org/bible/gbf.htm</a>
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
* @author DM Smith [dmsmith555 at yahoo dot com]
*/
! public class GBFTagBuilders
{
/**
--- 54,63 ----
* found is: <a href="http://ebible.org/bible/gbf.htm">http://ebible.org/bible/gbf.htm</a>
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
* @author DM Smith [dmsmith555 at yahoo dot com]
*/
! public final class GBFTagBuilders
{
/**
Index: GBFFilter.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/GBFFilter.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** GBFFilter.java 10 May 2005 02:39:23 -0000 1.12
--- GBFFilter.java 17 May 2005 00:43:16 -0000 1.13
***************
*** 39,43 ****
* found is: <a href="http://ebible.org/bible/gbf.htm">http://ebible.org/bible/gbf.htm</a>
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 39,43 ----
* found is: <a href="http://ebible.org/bible/gbf.htm">http://ebible.org/bible/gbf.htm</a>
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
***************
*** 76,81 ****
* original string.
*/
! private List parseTags(String remains)
{
List taglist = new ArrayList();
--- 76,82 ----
* original string.
*/
! private List parseTags(String aRemains)
{
+ String remains = aRemains;
List taglist = new ArrayList();
Index: GBFTags.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/gbf/GBFTags.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** GBFTags.java 10 May 2005 02:39:23 -0000 1.3
--- GBFTags.java 17 May 2005 00:43:16 -0000 1.4
***************
*** 39,43 ****
* A holder of all of the GBF Tag Handler classes.
*
! * @see gnu.gpl.Licence for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
--- 39,43 ----
* A holder of all of the GBF Tag Handler classes.
*
! * @see gnu.gpl.License for license details.
* The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
More information about the jsword-svn
mailing list