formatting
[jalview.git] / src / jalview / io / packed / DataProvider.java
index 5c867c8..ac370f2 100644 (file)
 package jalview.io.packed;
 
 /**
- * API for a data provider that can be used with jalview.io.packed.ParsePackedSet
+ * API for a data provider that can be used with
+ * jalview.io.packed.ParsePackedSet
+ * 
  * @author JimP
- *
+ * 
  */
 public interface DataProvider
 {
   /**
    * class of data expected to be provided by datasource
+   * 
    * @author JimP
-   *
+   * 
    */
   public enum JvDataType
   {
@@ -38,9 +41,9 @@ public interface DataProvider
     /**
      * a jalview annotation file
      */
-    ANNOTATION, 
+    ANNOTATION,
     /**
-     * a GFF or Jalview features file 
+     * a GFF or Jalview features file
      */
     FEATURES,
     /**
@@ -48,15 +51,16 @@ public interface DataProvider
      */
     TREE,
     /**
-     * any file that provides data that should be associated with a specified sequence.
+     * any file that provides data that should be associated with a specified
+     * sequence.
      */
     SEQASSOCATED;
   }
 
   /**
-   * data to be parsed according to its type. Each call to getDataSource
-   * should return a new instance of the same data stream initialised to the
-   * beginning of the chunk of data that is to be parsed.
+   * data to be parsed according to its type. Each call to getDataSource should
+   * return a new instance of the same data stream initialised to the beginning
+   * of the chunk of data that is to be parsed.
    * 
    * @return
    */