X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fpacked%2FDataProvider.java;h=ac370f28da250b59fafd6eeba6ec14cf9ca69268;hb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;hp=5c867c8408c495182277cd154a8ea82356750240;hpb=1cc81e06ac2faa5ee4b8879e9fa019956e34259f;p=jalview.git diff --git a/src/jalview/io/packed/DataProvider.java b/src/jalview/io/packed/DataProvider.java index 5c867c8..ac370f2 100644 --- a/src/jalview/io/packed/DataProvider.java +++ b/src/jalview/io/packed/DataProvider.java @@ -18,16 +18,19 @@ 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 */