c274d7770b0bb3aa3237a4af8ec1affd876cf1a5
[jalview.git] / src / jalview / io / packed / SimpleDataProvider.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.io.packed;
19
20 import jalview.io.FileParse;
21
22 /**
23  * minimal implementation of the DataProvider interface. Allows a FileParse
24  * datasource to be specified as one of the DataProvider.JvDataType content
25  * types, with or without some other associated object as external reference.
26  */
27 public class SimpleDataProvider implements DataProvider
28 {
29   DataProvider.JvDataType jvtype;
30
31   FileParse source;
32
33   Object assocseq;
34
35   /**
36    * create a SimpleDataProvider
37    * 
38    * @param type
39    *          - contents of resource accessible via fp
40    * @param fp
41    *          - datasource
42    * @param assoc
43    *          - external object that fp's content should be associated with (may
44    *          be null)
45    */
46   public SimpleDataProvider(DataProvider.JvDataType type, FileParse fp,
47           Object assoc)
48   {
49     jvtype = type;
50     source = fp;
51     assocseq = assoc;
52   }
53
54   @Override
55   public FileParse getDataSource()
56   {
57     return source;
58   }
59
60   @Override
61   public Object getSequenceTarget()
62   {
63     return assocseq;
64   }
65
66   @Override
67   public DataProvider.JvDataType getType()
68   {
69     return jvtype;
70   }
71
72 }