org.jmol.api.JSVInterface 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.Properties;
/**
* and interface for JSpecView for the Jmol application
*
*/
public interface JSVInterface {
public void exitJSpecView(boolean withDialog, Object frame);
public void runScript(String script);
public void saveProperties(Properties properties);
public void setProperties(Properties properties);
public void syncToJmol(String msg);
}