X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fpacked%2FDataProvider.java;h=fecc5cab7df3af9d8f90cca828c89102de1a6d8b;hb=ad15cff29620f960119f80176f1fd443da9f6763;hp=5c867c8408c495182277cd154a8ea82356750240;hpb=797df64fa2a0a30773d0f48f5494d4155e5a8be3;p=jalview.git diff --git a/src/jalview/io/packed/DataProvider.java b/src/jalview/io/packed/DataProvider.java index 5c867c8..fecc5ca 100644 --- a/src/jalview/io/packed/DataProvider.java +++ b/src/jalview/io/packed/DataProvider.java @@ -1,33 +1,39 @@ -/******************************************************************************* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle - * +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * * This file is part of Jalview. - * + * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - * + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with Jalview. If not, see . - *******************************************************************************/ + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' 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 +44,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 +54,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 */ @@ -75,4 +82,4 @@ public interface DataProvider * @return */ DataProvider.JvDataType getType(); -} \ No newline at end of file +}