Package org.w3c.dom.svg

Examples of org.w3c.dom.svg.SVGAnimatedLength


    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFilterElement#getWidth()}.
     */
    public SVGAnimatedLength getWidth() {
        SVGAnimatedLength result;
        if (widthReference == null ||
            (result = (SVGAnimatedLength)widthReference.get()) == null) {
            result = new SVGOMAnimatedLength(this, null, "width", null);
            widthReference = new WeakReference(result);
        }
View Full Code Here


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

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGLinearGradientElement#getX1()}.
     */
    public SVGAnimatedLength getX1() {
        SVGAnimatedLength result;
        if (x1Reference == null ||
            (result = (SVGAnimatedLength)x1Reference.get()) == null) {
            result = new SVGOMAnimatedLength
                (this, null, SVG_X1_ATTRIBUTE, null);
            x1Reference = new WeakReference(result);
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGLinearGradientElement#getY1()}.
     */
    public SVGAnimatedLength getY1() {
        SVGAnimatedLength result;
        if (y1Reference == null ||
            (result = (SVGAnimatedLength)y1Reference.get()) == null) {
            result = new SVGOMAnimatedLength
                (this, null, SVG_Y1_ATTRIBUTE, null);
            y1Reference = new WeakReference(result);
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGLinearGradientElement#getX2()}.
     */
    public SVGAnimatedLength getX2() {
        SVGAnimatedLength result;
        if (x2Reference == null ||
            (result = (SVGAnimatedLength)x2Reference.get()) == null) {
            result = new SVGOMAnimatedLength
                (this, null, SVG_X2_ATTRIBUTE, null);
            x2Reference = new WeakReference(result);
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGLinearGradientElement#getY2()}.
     */
    public SVGAnimatedLength getY2() {
        SVGAnimatedLength result;
        if (y2Reference == null ||
            (result = (SVGAnimatedLength)y2Reference.get()) == null) {
            result = new SVGOMAnimatedLength
                (this, null, SVG_Y2_ATTRIBUTE, null);
            y2Reference = new WeakReference(result);
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEConvolveMatrixElement#getKernelUnitLengthX()}.
     */
    public SVGAnimatedLength getKernelUnitLengthX() {
        SVGAnimatedLength result;
        if (kernelUnitLengthXReference == null ||
            (result = (SVGAnimatedLength)kernelUnitLengthXReference.get()) == null) {
            result = new SVGOMAnimatedLength(this, null,
                                             SVG_KERNEL_UNIT_LENGTH_X_ATTRIBUTE,
                                             null);
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFEConvolveMatrixElement#getKernelUnitLengthY()}.
     */
    public SVGAnimatedLength getKernelUnitLengthY() {
        SVGAnimatedLength result;
        if (kernelUnitLengthYReference == null ||
            (result = (SVGAnimatedLength)kernelUnitLengthYReference.get()) == null) {
            result = new SVGOMAnimatedLength(this, null,
                                             SVG_KERNEL_UNIT_LENGTH_Y_ATTRIBUTE,
                                             null);
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFilterPrimitiveStandardAttributes#getX()}.
     */
    public SVGAnimatedLength getX() {
        SVGAnimatedLength result;
        if (xReference == null ||
            (result = (SVGAnimatedLength)xReference.get()) == null) {
            result = new SVGOMAnimatedLength(this, null, SVG_X_ATTRIBUTE, null);
            xReference = new WeakReference(result);
        }
View Full Code Here

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.dom.svg.SVGFilterPrimitiveStandardAttributes#getY()}.
     */
    public SVGAnimatedLength getY() {
        SVGAnimatedLength result;
        if (yReference == null ||
            (result = (SVGAnimatedLength)yReference.get()) == null) {
            result = new SVGOMAnimatedLength(this, null, SVG_Y_ATTRIBUTE, null);
            yReference = new WeakReference(result);
        }
View Full Code Here

TOP

Related Classes of org.w3c.dom.svg.SVGAnimatedLength

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.