}
// basically, for HTML or non JSP tag, directly renders it.
return new DumTagConverter(ele);
}
final CMElementDeclaration decl = CMUtil.getElementDeclaration(ele);
if (decl == null)
{
if (PageDesignerTraceOptions.TRACE_CONVERTERSELECT)
{
PageDesignerTraceOptions
.log("ConverterFactoryRegistry: factory and decl not found, " //$NON-NLS-1$
+ String
.format(
"Selected DumTagConverter for uri=%s, tagname=%s", //$NON-NLS-1$
uri, ele.getLocalName()));
}
return new DumTagConverter(ele);
}
final int contentType = decl.getContentType();
if (contentType == CMElementDeclaration.EMPTY)
{
if (PageDesignerTraceOptions.TRACE_CONVERTERSELECT)
{
PageDesignerTraceOptions