Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: docs/future/translation/Translation.java


1   
2   package docs.future.translation;
3   
4   /**
5   * The Translation class stores the following:<ul>
6   * <li>word (either a String or a Strongs)
7   * <li>a list of words it is translated from (Strongs or Strings)
8   * <li>a list of words it is translated to (Strongs or Strings)
9   * </ul>. 
10  * 
11  * <table border='1' cellPadding='3' cellSpacing='0' width="100%">
12  * <tr><td bgColor='white'class='TableRowColor'><font size='-7'>
13  * Distribution Licence:<br />
14  * Project B is free software; you can redistribute it
15  * and/or modify it under the terms of the GNU General Public License,
16  * version 2 as published by the Free Software Foundation.<br />
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  * General Public License for more details.<br />
21  * The License is available on the internet
22  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, by writing to
23  * <i>Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24  * MA 02111-1307, USA</i>, Or locally at the Licence link below.<br />
25  * The copyright to this program is held by it's authors.
26  * </font></td></tr></table>
27  * @see <a href='http://www.eireneh.com/servlets/Web'>Project B Home</a>
28  * @see <{docs.Licence}>
29  * @author Joe Walker
30  * @version $Id:$
31  */
32  public class Translation
33  {
34      /**
35      * Basic constructor - the translations of a non original word
36      * @param word The native language word
37      */
38      public Translation(String word)
39      {
40      }
41  
42      /**
43      * Basic constructor - the translations of a Greek or Hebrew word
44      * @param word The Strongs number representing the original word
45      */
46      public Translation(Strongs word)
47      {
48      }
49  }