createElementNS method

Element createElementNS(
  1. String uri,
  2. String type,
  3. BindingContext context
)

Implementation

Element createElementNS(String uri, String type, BindingContext context) {
  Element element = element_registry.createElementNS(uri, type, context);
  return element;
}