JAL-2418 source formatting
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFile.java
index a95f6e5..8a32c13 100644 (file)
@@ -46,6 +46,8 @@ public class EmblFile
 
   Vector<EmblError> errors;
 
+  String text;
+
   /**
    * @return the entries
    */
@@ -119,8 +121,9 @@ public class EmblFile
       try
       {
         // uncomment to DEBUG EMBLFile reading
-        if (jalview.bin.Cache.getDefault(jalview.bin.Cache.CASTORLOGLEVEL,
-                "debug").equalsIgnoreCase("DEBUG"))
+        if (jalview.bin.Cache
+                .getDefault(jalview.bin.Cache.CASTORLOGLEVEL, "debug")
+                .equalsIgnoreCase("DEBUG"))
         {
           unmar.setDebug(jalview.bin.Cache.log.isDebugEnabled());
         }
@@ -187,4 +190,14 @@ public class EmblFile
       }
     }
   }
+
+  public String getText()
+  {
+    return text;
+  }
+
+  public void setText(String text)
+  {
+    this.text = text;
+  }
 }