1 package org.catacomb.interlish.structure;
2
3
4 public interface GraphicsView extends Presenter {
5
6
7 void attachGraphicsController(Object obj);
8
9 void setXRange(double low, double high);
10
11 void setFixedAspectRatio(double ar);
12
13 void addRangeWatcher(RangeWatcher rw);
14
15 }