}
// Inherit Javadoc.
public void startElement(OpaqueElementStart element, boolean content)
throws WBSAXException {
SpecialOpaqueElementStart specialStart =
(SpecialOpaqueElementStart) element;
// Create a new element
WBDOMElement specialElement = ((DissectableWBDOMFactory) factory).
createDissectionElement(specialStart.getType(),
specialStart.getAnnotation());
pushElement(specialElement);
// If there is no content - fake an end element.
if (!content) {
endElement();
}