javajs.util.ListDataReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmol Show documentation
Show all versions of jmol Show documentation
Jmol: an open-source Java viewer for chemical structures in 3D
package javajs.util;
import java.io.IOException;
/**
*
* VectorDataReader subclasses BufferedReader and overrides its
* read, readLine, mark, and reset methods so that JmolAdapter
* works with Vector arrays without any further adaptation.
*
*/
public class ListDataReader extends DataReader {
private Lst data;
private int pt;
private int len;
public ListDataReader() {
super();
}
@SuppressWarnings("unchecked")
@Override
public DataReader setData(Object data) {
this.data = (Lst) data;
len = this.data.size();
return this;
}
@Override
public int read(char[] buf, int off, int len) throws IOException {
return readBuf(buf, off, len);
}
@Override
public String readLine() {
return (pt < len ? data.get(pt++) : null);
}
/**
*
* @param ptr
*/
public void mark(long ptr) {
//ignore ptr.
ptMark = pt;
}
@Override
public void reset() {
pt = ptMark;
}
}