]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/AbstractEntry.java
Auto-format everything.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / AbstractEntry.java
index f5d0c8d51e27565ba9192d6d3f8c06bce502937f..931f9a1bf3e4a53ae38384e773caf9072daa1cb5 100644 (file)
@@ -19,32 +19,32 @@ import com.hughes.util.IndexedObject;
 import java.io.IOException;
 import java.io.RandomAccessFile;
 
-
 public abstract class AbstractEntry extends IndexedObject {
-  
-  public final EntrySource entrySource;
-  
-  protected AbstractEntry(EntrySource entrySource) {
-    super(-1);
-    this.entrySource = entrySource;
-  }
-
-  public AbstractEntry(Dictionary dictionary, RandomAccessFile raf, final int index) throws IOException {
-    super(index);
-    if (dictionary.dictFileVersion >= 1) {
-      final int entrySouceIdx = raf.readShort();
-      this.entrySource = dictionary.sources.get(entrySouceIdx);
-    } else {
-      this.entrySource = null;
+
+    public final EntrySource entrySource;
+
+    protected AbstractEntry(EntrySource entrySource) {
+        super(-1);
+        this.entrySource = entrySource;
     }
-  }
 
-  public void write(RandomAccessFile raf) throws IOException {
-    raf.writeShort(entrySource.index());
-  }
+    public AbstractEntry(Dictionary dictionary, RandomAccessFile raf, final int index)
+            throws IOException {
+        super(index);
+        if (dictionary.dictFileVersion >= 1) {
+            final int entrySouceIdx = raf.readShort();
+            this.entrySource = dictionary.sources.get(entrySouceIdx);
+        } else {
+            this.entrySource = null;
+        }
+    }
+
+    public void write(RandomAccessFile raf) throws IOException {
+        raf.writeShort(entrySource.index());
+    }
 
-  public abstract void addToDictionary(final Dictionary dictionary);
+    public abstract void addToDictionary(final Dictionary dictionary);
 
-  public abstract RowBase CreateRow(int rowIndex, Index dictionaryIndex);
+    public abstract RowBase CreateRow(int rowIndex, Index dictionaryIndex);
 
 }