package jalview.gui; import jalview.gui.StructureViewer.ViewerType; /** * A class for the gui frame through which Jalview interacts with the ChimeraX * structure viewer. Mostly the same as ChimeraViewFrame with a few overrides * for the differences. * * @author gmcarstairs * */ public class ChimeraXViewFrame extends ChimeraViewFrame { @Override public ViewerType getViewerType() { return null;// ViewerType.CHIMERAX; } @Override protected String getViewerName() { return "ChimeraX"; } }