]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/parser/wiktionary/AbstractWiktionaryParser.java
Don't handle it-conj in EnParser.
[DictionaryPC.git] / src / com / hughes / android / dictionary / parser / wiktionary / AbstractWiktionaryParser.java
index 8d03bff4c004418df51fd0a8a63d86399d9ac6be..b27d554fc0571a0cde4b5f6925963c081a87a3a1 100644 (file)
@@ -47,7 +47,7 @@ public abstract class AbstractWiktionaryParser implements Parser {
   final SortedMap<String, AtomicInteger> counters = new TreeMap<String, AtomicInteger>();
   final Set<String> pairsAdded = new LinkedHashSet<String>();
   
-  EntrySource entrySource;
+  public EntrySource entrySource;
   public String title;
 
 
@@ -108,6 +108,10 @@ public abstract class AbstractWiktionaryParser implements Parser {
     }
     counter.incrementAndGet();
   }
+  
+  public void addLinkToCurrentEntry(final String token, final EntryTypeName entryTypeName) {
+      assert false : token + ", title=" + title;
+  }
 
   
   // -------------------------------------------------------------------------
@@ -228,6 +232,7 @@ public abstract class AbstractWiktionaryParser implements Parser {
     public void onListItem(WikiTokenizer wikiTokenizer) {
       assert false;
     }
+
   }
   
   // --------------------------------------------------------------------