1 package org.catacomb.dataview.display;
2
3
4 public class ViewConfig {
5
6 String id;
7 double[] xyxy;
8
9
10 public ViewConfig(String s, double[] da) {
11 id = s;
12 xyxy = da;
13 }
14
15
16 public String getID() {
17 return id;
18 }
19
20
21 public double[] getLimits() {
22 return xyxy;
23 }
24
25
26 }