OSDN Git Service

Auto-save
[dvibrowser/dvi2epub.git] / src / jp / sourceforge / dvibrowser / dvi2epub / epub / BookEntry.java
diff --git a/src/jp/sourceforge/dvibrowser/dvi2epub/epub/BookEntry.java b/src/jp/sourceforge/dvibrowser/dvi2epub/epub/BookEntry.java
deleted file mode 100644 (file)
index eed96f6..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-package jp.sourceforge.dvibrowser.dvi2epub.epub;
-
-public class BookEntry {
-       private final String path;
-       private final String id;
-       private final String mimeType;
-       private final boolean spine;
-       private final boolean manifest;
-       private final boolean wantNCX;
-
-       public BookEntry(String path, String id, String mimeType, boolean spine, boolean manifest, boolean wantNCX) {
-               this.path = path;
-               this.id = id;
-               this.mimeType = mimeType;
-               this.spine = spine;
-               this.manifest = manifest;
-               this.wantNCX = wantNCX;
-       }
-
-       public String getPath() {
-               return path;
-       }
-
-       public String getId() {
-               return id;
-       }
-
-       public String getMimetype() {
-               return mimeType;
-       }
-
-       public boolean wantSpine() {
-               return spine;
-       }
-
-       public boolean wantManifest() {
-               return manifest;
-       }
-
-       public boolean wantNCX() {
-               return wantNCX;
-       }
-}