} else {
for (int i = 0; i < examples.length; i++) {
CALExpression expression = examples[i].getExpression();
String description = examples[i].getDescription() != null ? examples[i].getDescription() : NavigatorMessages.getString("NAV_NoValue");
buffer.append("<h3>" + NavigatorMessages.getString("NAV_ExampleNumber", Integer.valueOf(i+1)) + "</h3>");
buffer.append("<table border='0' width='100%'>");
buffer.append("<tr>");
buffer.append("<td rowspan='3' width='20'> </td>");
buffer.append("<td width='120'>" + NavigatorMessages.getString("NAV_Description") + "</td>");
buffer.append("<td>" + description + "</td>");
buffer.append("</tr>");
buffer.append("<tr>");
buffer.append("<td>" + NavigatorMessages.getString("NAV_Expression") + "</td>");
if (expression.getQualifiedExpressionText().equals("")) {
buffer.append("<td><tt>" + expression.getExpressionText() + "</tt></td>");
} else {
buffer.append("<td><tt>" + expression.getQualifiedExpressionText() + "</tt></td>");
}
buffer.append("</tr>");
if (examples[i].evaluateExample()) {
buffer.append("<tr>");