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

org.jopendocument.model.draw.DrawStrokeDash 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 DrawStrokeDash {

    protected String drawDistance;
    protected String drawDots1;
    protected String drawDots1Length;
    protected String drawDots2;
    protected String drawDots2Length;
    protected String drawName;
    protected String drawStyle;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the value of the drawDots2Length property.
     * 
     * @param value allowed object is {@link String }
     * 
     */
    public void setDrawDots2Length(final String value) {
        this.drawDots2Length = 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 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