# HG changeset patch # User František Kučera # Date 1376938384 -7200 # Node ID b8dc8a6f82cf55fe1e8c8684e2c1fa7a6c92469b # Parent 84c0cb1591635ae8ce44821aa0a67ae4b08ad92b generator: JavaDoc diff -r 84c0cb159163 -r b8dc8a6f82cf java/dictionary-generator/src/cz/frantovo/telco/dictionary/Functions.java --- a/java/dictionary-generator/src/cz/frantovo/telco/dictionary/Functions.java Mon Aug 19 19:58:00 2013 +0200 +++ b/java/dictionary-generator/src/cz/frantovo/telco/dictionary/Functions.java Mon Aug 19 20:53:04 2013 +0200 @@ -29,7 +29,8 @@ import org.w3c.dom.NodeList; /** - * + * Common functions + * * @author Ing. František Kučera (frantovo.cz) */ public class Functions { diff -r 84c0cb159163 -r b8dc8a6f82cf java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java --- a/java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java Mon Aug 19 19:58:00 2013 +0200 +++ b/java/dictionary-generator/src/cz/frantovo/telco/dictionary/IndexEntry.java Mon Aug 19 20:53:04 2013 +0200 @@ -23,7 +23,9 @@ import java.util.Objects; /** - * + * Represents one item in StarDict index file (.idx) + * which links the term and its position and length in data file (.dict) + * * @author Ing. František Kučera (frantovo.cz) */ public class IndexEntry implements Comparable { diff -r 84c0cb159163 -r b8dc8a6f82cf java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java --- a/java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java Mon Aug 19 19:58:00 2013 +0200 +++ b/java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java Mon Aug 19 20:53:04 2013 +0200 @@ -23,7 +23,9 @@ import java.util.Objects; /** - * + * Represents one item in StarDict synonyms file (.syn) + * links the synonym term (string) to the position of the base term in index file + * * @author Ing. František Kučera (frantovo.cz) */ public class SynonymsEntry implements Comparable {