generator: JavaDoc
authorFrantišek Kučera <franta-hg@frantovo.cz>
Mon, 19 Aug 2013 20:53:04 +0200
changeset 130b8dc8a6f82cf
parent 129 84c0cb159163
child 131 940e418f21a3
generator: JavaDoc
java/dictionary-generator/src/cz/frantovo/telco/dictionary/Functions.java
java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java
java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java
     1.1 --- a/java/dictionary-generator/src/cz/frantovo/telco/dictionary/Functions.java	Mon Aug 19 19:58:00 2013 +0200
     1.2 +++ b/java/dictionary-generator/src/cz/frantovo/telco/dictionary/Functions.java	Mon Aug 19 20:53:04 2013 +0200
     1.3 @@ -29,7 +29,8 @@
     1.4  import org.w3c.dom.NodeList;
     1.5  
     1.6  /**
     1.7 - *
     1.8 + * Common functions
     1.9 + * 
    1.10   * @author Ing. František Kučera (frantovo.cz)
    1.11   */
    1.12  public class Functions {
     2.1 --- a/java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java	Mon Aug 19 19:58:00 2013 +0200
     2.2 +++ b/java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java	Mon Aug 19 20:53:04 2013 +0200
     2.3 @@ -23,7 +23,9 @@
     2.4  import java.util.Objects;
     2.5  
     2.6  /**
     2.7 - *
     2.8 + * Represents one item in StarDict index file (.idx)
     2.9 + * which links the term and its position and length in data file (.dict)
    2.10 + * 
    2.11   * @author Ing. František Kučera (frantovo.cz)
    2.12   */
    2.13  public class IndexEntry implements Comparable<IndexEntry> {
     3.1 --- a/java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java	Mon Aug 19 19:58:00 2013 +0200
     3.2 +++ b/java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java	Mon Aug 19 20:53:04 2013 +0200
     3.3 @@ -23,7 +23,9 @@
     3.4  import java.util.Objects;
     3.5  
     3.6  /**
     3.7 - *
     3.8 + * Represents one item in StarDict synonyms file (.syn)
     3.9 + * links the synonym term (string) to the position of the base term in index file
    3.10 + * 
    3.11   * @author Ing. František Kučera (frantovo.cz)
    3.12   */
    3.13  public class SynonymsEntry implements Comparable<SynonymsEntry> {