if (outputNames.size() > AnalyzerModel.MAX_OUTPUTS) {
analyzeError(proj, getFromLocale("analyzeTooManyOutputsError","" + AnalyzerModel.MAX_OUTPUTS));
return;
}
Analyzer analyzer = AnalyzerManager.getAnalyzer();
analyzer.getModel().setCurrentCircuit(proj, circuit);
configureAnalyzer(proj, circuit, analyzer, pinNames, inputNames, outputNames);
analyzer.setVisible(true);
analyzer.toFront();
}