]> gitweb.fperrin.net Git - DictionaryPC.git/blob - src/com/hughes/android/dictionary/InputParser.java
go
[DictionaryPC.git] / src / com / hughes / android / dictionary / InputParser.java
1 package com.hughes.android.dictionary;
2
3 import java.io.File;
4
5 public interface InputParser {
6   
7   void parse(final File file, final Dictionary dest);
8   
9   class LineParser implements InputParser {
10     @Override
11     public void parse(File file, Dictionary dest) {
12     }
13   }
14
15 }