JAL-2422 pull-up refactoring of structure commands (continued)
[jalview.git] / src / jalview / gui / ChimeraXViewFrame.java
1 package jalview.gui;
2
3 import jalview.gui.StructureViewer.ViewerType;
4
5 /**
6  * A class for the gui frame through which Jalview interacts with the ChimeraX
7  * structure viewer. Mostly the same as ChimeraViewFrame with a few overrides
8  * for the differences.
9  * 
10  * @author gmcarstairs
11  *
12  */
13 public class ChimeraXViewFrame extends ChimeraViewFrame
14 {
15
16   @Override
17   public ViewerType getViewerType()
18   {
19     return null;// ViewerType.CHIMERAX;
20   }
21
22   @Override
23   protected String getViewerName()
24   {
25     return "ChimeraX";
26   }
27
28 }