/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.svg.SVGEllipseElement#getCx()}.
*/
public SVGAnimatedLength getCx() {
SVGAnimatedLength result;
if (cxReference == null ||
(result = (SVGAnimatedLength)cxReference.get()) == null) {
result = new SVGOMAnimatedLength(this, null, SVG_CX_ATTRIBUTE,
CX_DEFAULT_VALUE_PRODUCER);
cxReference = new WeakReference(result);