return mapServiceConfDialog;
}
private void openMapServiceConfDialog() {
MapServiceConfDialog dialog = getMapServiceConfDialog();
MapServiceDescFile file = new MapServiceDescFile(this
.getMapServiceDescFilePath());
if (file.exists()) {
dialog.loadMapServiceDesc(file);
}
dialog.setLocation(this.getX()+(this.getWidth() - dialog.getWidth()) / 2, this.getY()+(this
.getHeight() - dialog.getHeight()) / 2);
dialog.setVisible(true);
}