String starName = starSelectorDialog.getStarName();
String auid = starSelectorDialog.getAuid();
double minJD, maxJD;
// TODO: consider doing these value mods in the dialog
// getters to make this code more declarative.
if (!starSelectorDialog.wantAllData()) {
minJD = starSelectorDialog.getMinDate()
.getJulianDay();
maxJD = starSelectorDialog.getMaxDate()
.getJulianDay();
} else {