All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openscience.jmol.app.JmolPlugin Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package org.openscience.jmol.app;

import java.util.Map;

import javax.swing.ImageIcon;
import javax.swing.JFrame;

import org.jmol.c.CBK;
import org.jmol.viewer.Viewer;

public interface JmolPlugin { 
  void start(JFrame frame, Viewer vwr, Map jmolOptions);
  void destroy();
  String getVersion();
  String getName();
  void setVisible(boolean b);
  void notifyCallback(CBK type, Object[] data);
  ImageIcon getMenuIcon();
  String getMenuText();
  boolean isStarted();
  String getWebSite();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy