JAL-1452 nucleotide/protein default colour; JAL-845 SplitFrame refactor
[jalview.git] / src / jalview / api / SplitContainerI.java
1 package jalview.api;
2
3 /**
4  * Describes a visual container that can show two alignments.
5  * 
6  * @author gmcarstairs
7  *
8  */
9 public interface SplitContainerI
10 {
11
12   /**
13    * Set visibility of the specified split view component.
14    * 
15    * @param alignFrame
16    * @param show
17    */
18   // TODO need an interface for AlignFrame?
19   void setComplementVisible(Object alignFrame, boolean show);
20
21 }