1 package jalview.datamodel;
5 * A data bean class to hold properties of an RNA viewer
7 public class RnaViewerModel
9 public final String viewId;
11 public final String title;
17 public final int width;
19 public final int height;
21 public final int dividerLocation;
32 * @param dividerLocation
34 public RnaViewerModel(String viewId, String title, int xpos, int ypos,
36 int height, int dividerLocation)
44 this.dividerLocation = dividerLocation;