]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/EntrySource.java
go
[Dictionary.git] / src / com / hughes / android / dictionary / engine / EntrySource.java
index 914cf8f5f7578c34678d27a0c83eb6a673f03112..391e8cec218b89a29900eb29ba39ea6b351be307 100644 (file)
@@ -18,6 +18,12 @@ public class EntrySource extends IndexedObject implements Serializable {
     this.name = name;
   }
   
+  @Override
+  public String toString() {
+    return name;
+  }
+
+
   public static RAFListSerializer<EntrySource> SERIALIZER = new RAFListSerializer<EntrySource>() {
 
     @Override
@@ -30,8 +36,7 @@ public class EntrySource extends IndexedObject implements Serializable {
     @Override
     public void write(RandomAccessFile raf, EntrySource t) throws IOException {
       raf.writeUTF(t.name);
-    }
-    
+    }    
   };
   
 }