comparison flys-client/src/main/java/de/intevation/flys/client/client/ui/WQInputPanel.java @ 1459:149f70bcbb96

Adapted the seperator character between Ws and Qs in DESCRIBE documents which has changed in the flys-artifacts. flys-client/trunk@3493 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 20 Dec 2011 11:50:20 +0000
parents 9152cfb3a54c
children 00e429e6420c
comparison
equal deleted inserted replaced
1458:61521bc0ced3 1459:149f70bcbb96
518 } 518 }
519 519
520 520
521 protected VLayout createWString(DataItem single) { 521 protected VLayout createWString(DataItem single) {
522 String label = single.getLabel().trim(); 522 String label = single.getLabel().trim();
523 String[] cols = label.split(" "); 523 String[] cols = label.split(";");
524 524
525 VLayout v = new VLayout(); 525 VLayout v = new VLayout();
526 526
527 for (String col: cols) { 527 for (String col: cols) {
528 Label l = new Label(col + " " + MESSAGE.unitWSingle()); 528 Label l = new Label(col + " " + MESSAGE.unitWSingle());
552 } 552 }
553 553
554 554
555 protected VLayout createQString(DataItem single) { 555 protected VLayout createQString(DataItem single) {
556 String label = single.getLabel().trim(); 556 String label = single.getLabel().trim();
557 String[] cols = label.split(" "); 557 String[] cols = label.split(";");
558 558
559 VLayout v = new VLayout(); 559 VLayout v = new VLayout();
560 560
561 for (String col: cols) { 561 for (String col: cols) {
562 Label l = new Label(col + " " + MESSAGE.unitQSingle()); 562 Label l = new Label(col + " " + MESSAGE.unitQSingle());

http://dive4elements.wald.intevation.org