org.jmol.api.JmolJDXMOLReader 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 org.jmol.api;
public interface JmolJDXMOLReader {
void addPeakData(String info);
String discardLinesUntilContains2(String tag1, String tag2) throws Exception;
String discardLinesUntilContains(String string) throws Exception;
String discardLinesUntilNonBlank() throws Exception;
void processModelData(String data, String id, String type, String base,
String last, float modelScale, float vibScale, boolean isFirst)
throws Exception;
String rd() throws Exception;
void setSpectrumPeaks(int nH, String piUnitsX, String piUnitsY);
}