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

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

Go to download

jOpenDocument is a free library for developers looking to use Open Document files without OpenOffice.org.

The newest version!
/*
 * 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 DrawTransparency {

    protected String drawAngle;
    protected String drawBorder;
    protected String drawCx;
    protected String drawCy;
    protected String drawEnd;
    protected String drawName;
    protected String drawStart;
    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 drawEnd property.
     * 
     * @return possible object is {@link String }
     * 
     */
    public String getDrawEnd() {
        return this.drawEnd;
    }

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

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

    /**
     * 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 drawEnd property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawEnd(final String value) {
        this.drawEnd = 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 drawStart property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawStart(final String value) {
        this.drawStart = 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