Exemplo n.º 1
0
 void rbWKTFormatted_actionPerformed(ActionEvent e) {
   writeView(
       convertToWKT(test.getGeometry(0), true),
       convertToWKT(test.getGeometry(1), true),
       convertToWKT(test.getResult(), true));
 }
Exemplo n.º 2
0
 void rbGML_actionPerformed(ActionEvent e) {
   writeView(
       convertToGML(test.getGeometry(0)),
       convertToGML(test.getGeometry(1)),
       convertToGML(test.getResult()));
 }
Exemplo n.º 3
0
 void rbWKT_actionPerformed(ActionEvent e) {
   writeView(
       test.getGeometry(0) == null ? null : test.getGeometry(0).toString(),
       test.getGeometry(1) == null ? null : test.getGeometry(1).toString(),
       test.getResult() == null ? null : test.getResult().toString());
 }