om.SaxAttributes.copy

Clones an existing SAX attributes object.

Syntax

copy(
   attrs om.SaxAttributes )
  RETURNING result om.SaxAttributes
  1. attrs is a set of SAX attributes to clone.

Usage

The om.SaxAttributes.copy() class method makes a clone of the om.SaxAttributes object passed as reference and returns the new created object.

Example

DEFINE copy, orig om.SaxAttributes
...
LET copy = om.SaxAttributes.copy(orig)