comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/ChartInfo.java @ 610:ea2191b1299d

#170 Changed the DOM manipulation while zoom and drag operation. flys-client/trunk@2223 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 23 Jun 2011 17:46:08 +0000
parents 460b8e0f0563
children 936e3e6cd9b9
comparison
equal deleted inserted replaced
609:418be98527f0 610:ea2191b1299d
1 package de.intevation.flys.client.shared.model; 1 package de.intevation.flys.client.shared.model;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4
5 import com.google.gwt.core.client.GWT;
4 6
5 import de.intevation.flys.client.shared.Transform2D; 7 import de.intevation.flys.client.shared.Transform2D;
6 8
7 9
8 /** 10 /**
60 return yAxes[pos]; 62 return yAxes[pos];
61 } 63 }
62 64
63 return null; 65 return null;
64 } 66 }
67
68
69 public void dumpGWT() {
70 StringBuilder sb = new StringBuilder();
71
72 Axis x = getXAxis(0);
73
74 GWT.log("X axis:");
75 GWT.log("... from " + x.getFrom() + " to " + x.getTo());
76 GWT.log("... min " + x.getMin() + " max " + x.getMax());
77
78 for (int i = 0, count = getYAxisCount(); i < count; i++) {
79 Axis y = getYAxis(i);
80
81 GWT.log("Y axis " + i + ":");
82 GWT.log("... from " + y.getFrom() + " to " + y.getTo());
83 GWT.log("... min " + y.getMin() + " max " + y.getMax());
84 }
85
86 for (Transform2D t: transformer) {
87 t.dumpGWT();
88 }
89 }
65 } 90 }
66 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 91 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org