[jsword-svn] r2111 - in trunk/jsword/src/main/java/org/crosswire: common/config common/progress common/util jsword/book jsword/book/basic jsword/book/install/sword jsword/book/readings jsword/book/study jsword/book/sword jsword/index/lucene jsword/index/query jsword/passage jsword/util jsword/versification
dmsmith at crosswire.org
dmsmith at crosswire.org
Tue Mar 8 07:05:54 MST 2011
Author: dmsmith
Date: 2011-03-08 07:05:54 -0700 (Tue, 08 Mar 2011)
New Revision: 2111
Removed:
trunk/jsword/src/main/java/org/crosswire/common/config/Msg.java
trunk/jsword/src/main/java/org/crosswire/common/progress/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/common/util/Msg.java
trunk/jsword/src/main/java/org/crosswire/common/util/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/basic/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/study/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/index/lucene/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/index/query/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/passage/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/passage/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/util/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/util/UserMsg.java
trunk/jsword/src/main/java/org/crosswire/jsword/versification/Msg.java
trunk/jsword/src/main/java/org/crosswire/jsword/versification/UserMsg.java
Log:
JS-104 Removed obsolete Msg and UserMsg classes.
Deleted: trunk/jsword/src/main/java/org/crosswire/common/config/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/config/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/common/config/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +0,0 @@
-/**
- * Distribution License:
- * This 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/llgpl.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.common.config;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/common/progress/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/progress/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/common/progress/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.common.progress;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/common/util/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/util/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/common/util/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,45 +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.common.util;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/common/util/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/common/util/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/common/util/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,46 +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: Msg.java 1672 2007-08-08 18:40:44Z dmsmith $
- */
-package org.crosswire.common.util;
-
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: 2007
- * The copyright to this program is held by it's authors.
- *
- * ID: $Id$
- */
-package org.crosswire.jsword.book;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: 2007
- * The copyright to this program is held by it's authors.
- *
- * ID: $Id: Msg.java 1701 2007-10-24 20:15:07Z dmsmith $
- */
-package org.crosswire.jsword.book;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/basic/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/basic/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/basic/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.basic;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-public final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.install.sword;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/install/sword/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: Msg.java 1466 2007-07-02 02:48:09Z dmsmith $
- */
-package org.crosswire.jsword.book.install.sword;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.readings;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/readings/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: Msg.java 1466 2007-07-02 02:48:09Z dmsmith $
- */
-package org.crosswire.jsword.book.readings;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/study/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/study/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/study/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.study;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.sword;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: Msg.java 1466 2007-07-02 02:48:09Z dmsmith $
- */
-package org.crosswire.jsword.book.sword;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/index/lucene/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/index/lucene/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/index/lucene/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.index.lucene;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/index/query/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/index/query/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/index/query/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.index.query;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/passage/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/passage/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/passage/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.passage;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/passage/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/passage/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/passage/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: Msg.java 1466 2007-07-02 02:48:09Z dmsmith $
- */
-package org.crosswire.jsword.passage;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/util/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/util/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/util/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.util;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/util/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/util/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/util/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,48 +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: Msg.java 1672 2007-08-08 18:40:44Z dmsmith $
- */
-package org.crosswire.jsword.util;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/versification/Msg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/versification/Msg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/versification/Msg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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.versification;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class Msg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String lookupText(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new Msg();
-}
Deleted: trunk/jsword/src/main/java/org/crosswire/jsword/versification/UserMsg.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/versification/UserMsg.java 2011-03-08 13:55:32 UTC (rev 2110)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/versification/UserMsg.java 2011-03-08 14:05:54 UTC (rev 2111)
@@ -1,47 +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: Msg.java 1466 2007-07-02 02:48:09Z dmsmith $
- */
-package org.crosswire.jsword.versification;
-
-import org.crosswire.common.util.MsgBase;
-
-/**
- * Compile safe Msg resource settings.
- *
- * @see gnu.lgpl.License for license details.<br>
- * The copyright to this program is held by it's authors.
- * @author DM Smith [dmsmith555 at yahoo dot com]
- */
-final class UserMsg extends MsgBase {
- /**
- * Get the internationalized text, but return key if key is unknown.
- * The text requires one or more parameters to be passed.
- *
- * @param key
- * @param params
- * @return the formatted, internationalized text
- */
- public static String gettext(String key, Object... params) {
- return msg.lookup(key, params);
- }
-
- private static MsgBase msg = new UserMsg();
-}
More information about the jsword-svn
mailing list