Examples of SVGAnimatedLength


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

Examples of org.w3c.dom.svg.SVGAnimatedLength

    /**
     * <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

Examples of org.w3c.dom.svg.SVGAnimatedLength

    /**
     * <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

Examples of org.w3c.dom.svg.SVGAnimatedLength

    /**
     * <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

Examples of org.w3c.dom.svg.SVGAnimatedLength

    /**
     * <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

Examples of org.w3c.dom.svg.SVGAnimatedLength

    /**
     * <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

Examples of org.w3c.dom.svg.SVGAnimatedLength

    /**
     * <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

Examples of org.w3c.flex.forks.dom.svg.SVGAnimatedLength

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.flex.forks.dom.svg.SVGRadialGradientElement#getFx()}.
     */
    public SVGAnimatedLength getFx() {
        SVGAnimatedLength result =
            (SVGAnimatedLength)getLiveAttributeValue(null, SVG_FX_ATTRIBUTE);
        if (result == null) {
            result = new AbstractSVGAnimatedLength
                (this, null, SVG_FX_ATTRIBUTE,
                 SVGOMAnimatedLength.HORIZONTAL_LENGTH) {
View Full Code Here

Examples of org.w3c.flex.forks.dom.svg.SVGAnimatedLength

    /**
     * <b>DOM</b>: Implements {@link
     * org.w3c.flex.forks.dom.svg.SVGRadialGradientElement#getFy()}.
     */
    public SVGAnimatedLength getFy() {
        SVGAnimatedLength result =
            (SVGAnimatedLength)getLiveAttributeValue(null, SVG_FY_ATTRIBUTE);
        if (result == null) {
            result = new AbstractSVGAnimatedLength
                (this, null, SVG_FY_ATTRIBUTE,
                 SVGOMAnimatedLength.VERTICAL_LENGTH) {
View Full Code Here

Examples of org.w3c.flex.forks.dom.svg.SVGAnimatedLength

    /**
     * <b>DOM</b>: Implements {@link SVGRectElement#getRy()}.
     */
    public SVGAnimatedLength getRy() {
        SVGAnimatedLength result =
            (SVGAnimatedLength)getLiveAttributeValue(null, SVG_RY_ATTRIBUTE);
        if (result == null) {
            result = new AbstractSVGAnimatedLength
                (this, null, SVG_RY_ATTRIBUTE,
                 SVGOMAnimatedLength.HORIZONTAL_LENGTH) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.