All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jopendocument.model.draw.DrawGradient Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright 2008-2013 jOpenDocument, by ILM Informatique. All rights reserved.
 * 
 * The contents of this file are subject to the terms of the GNU
 * General Public License Version 3 only ("GPL").  
 * You may not use this file except in compliance with the License. 
 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html
 * See the License for the specific language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each file.
 * 
 */

package org.jopendocument.model.draw;

/**
 * 
 */
public class DrawGradient {

    protected String drawAngle;
    protected String drawBorder;
    protected String drawCx;
    protected String drawCy;
    protected String drawEndColor;
    protected String drawEndIntensity;
    protected String drawName;
    protected String drawStartColor;
    protected String drawStartIntensity;
    protected String drawStyle;

    /**
     * Gets the value of the drawAngle property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawAngle() {
        return this.drawAngle;
    }

    /**
     * Gets the value of the drawBorder property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawBorder() {
        return this.drawBorder;
    }

    /**
     * Gets the value of the drawCx property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawCx() {
        return this.drawCx;
    }

    /**
     * Gets the value of the drawCy property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawCy() {
        return this.drawCy;
    }

    /**
     * Gets the value of the drawEndColor property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawEndColor() {
        return this.drawEndColor;
    }

    /**
     * Gets the value of the drawEndIntensity property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawEndIntensity() {
        return this.drawEndIntensity;
    }

    /**
     * Gets the value of the drawName property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawName() {
        return this.drawName;
    }

    /**
     * Gets the value of the drawStartColor property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawStartColor() {
        return this.drawStartColor;
    }

    /**
     * Gets the value of the drawStartIntensity property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawStartIntensity() {
        return this.drawStartIntensity;
    }

    /**
     * Gets the value of the drawStyle property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawStyle() {
        return this.drawStyle;
    }

    /**
     * Sets the value of the drawAngle property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawAngle(final String value) {
        this.drawAngle = value;
    }

    /**
     * Sets the value of the drawBorder property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawBorder(final String value) {
        this.drawBorder = value;
    }

    /**
     * Sets the value of the drawCx property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawCx(final String value) {
        this.drawCx = value;
    }

    /**
     * Sets the value of the drawCy property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawCy(final String value) {
        this.drawCy = value;
    }

    /**
     * Sets the value of the drawEndColor property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawEndColor(final String value) {
        this.drawEndColor = value;
    }

    /**
     * Sets the value of the drawEndIntensity property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawEndIntensity(final String value) {
        this.drawEndIntensity = value;
    }

    /**
     * Sets the value of the drawName property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawName(final String value) {
        this.drawName = value;
    }

    /**
     * Sets the value of the drawStartColor property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawStartColor(final String value) {
        this.drawStartColor = value;
    }

    /**
     * Sets the value of the drawStartIntensity property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawStartIntensity(final String value) {
        this.drawStartIntensity = value;
    }

    /**
     * Sets the value of the drawStyle property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawStyle(final String value) {
        this.drawStyle = value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy