JAL-1807 Bob's JalviewJS prototype first commit
[jalviewjs.git] / src / javajs / util / StringDataReader.java
1 /* $RCSfile$\r
2  * $Author$\r
3  * $Date$\r
4  * $Revision$\r
5  *\r
6  * Copyright (C) 2011  The Jmol Development Team\r
7  *\r
8  * Contact: jmol-developers@lists.sf.net\r
9  *\r
10  *  This library is free software; you can redistribute it and/or\r
11  *  modify it under the terms of the GNU Lesser General Public\r
12  *  License as published by the Free Software Foundation; either\r
13  *  version 2.1 of the License, or (at your option) any later version.\r
14  *\r
15  *  This library is distributed in the hope that it will be useful,\r
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
18  *  Lesser General Public License for more details.\r
19  *\r
20  *  You should have received a copy of the GNU Lesser General Public\r
21  *  License along with this library; if not, write to the Free Software\r
22  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\r
23  *  02110-1301, USA.\r
24  */\r
25 \r
26 package javajs.util;\r
27 \r
28 import java.io.StringReader;\r
29 \r
30 \r
31 \r
32 \r
33 \r
34 public class StringDataReader extends DataReader {\r
35 \r
36   public StringDataReader() {\r
37     super();\r
38   }\r
39   \r
40   public StringDataReader(String data) {\r
41     super(new StringReader(data));\r
42   }\r
43 \r
44   @Override\r
45   public DataReader setData(Object data) {\r
46     return new StringDataReader((String) data);\r
47   }\r
48 }