org.jmol.api.JmolJDXMOLParser 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;
import java.util.Map;
import javajs.util.Lst;
public interface JmolJDXMOLParser {
public abstract JmolJDXMOLParser set(JmolJDXMOLReader loader,
String filePath,
Map htParams);
public abstract String getRecord(String key) throws Exception;
public abstract String getAttribute(String line, String tag);
public abstract boolean readModels() throws Exception;
public abstract int readPeaks(boolean isSignals, int peakCount)
throws Exception;
public abstract void setLine(String s);
public abstract String readACDMolFile() throws Exception;
Lst readACDAssignments(int nPoints, boolean isPeakAssignment) throws Exception;
int setACDAssignments(String model, String mytype, int peakCount,
Lst acdlist, String molFile) throws Exception;
}