* Erlang elements
*/
static public void showErlElements(final String title,
final ArrayList<IErlElement> e, final String secId) {
try {
final CodeInspectionResultsView v = (CodeInspectionResultsView) showView(
CODE_INSPECTION_VIEW, secId);
v.addElements(e);
v.setViewTitle(title);
v.refresh();
} catch (final Exception ex) {
ex.printStackTrace();
}
}