if ((maxAmount == null) || ((maxAmount.intValue() < 0))) {
ErrorDialog.showError(this, "La cantidad Máxima de segmentos a seleccionar debe ser mayo a cero");
}
CorrelationKind kind = (CorrelationKind) this.jCmbKind.getSelectedItem();
Qualifier qualifier = new Qualifier(selected, cor, maxAmount.intValue(), kind);
this.loadResults(qualifier.qualify(this.controller.getAnalysis().getAllSegments()));
this.empty = false;
}