/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.svg.SVGRectElement#getHeight()}.
*/
public SVGAnimatedLength getHeight() {
SVGAnimatedLength result;
if (heightReference == null ||
(result = (SVGAnimatedLength)heightReference.get()) == null) {
result = new SVGOMAnimatedLength(this, null, "height");
heightReference = new WeakReference(result);
}