DrawLineElement.java

  1. /**
  2.  * **********************************************************************
  3.  *
  4.  * <p>DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
  5.  *
  6.  * <p>Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved.
  7.  *
  8.  * <p>Use is subject to license terms.
  9.  *
  10.  * <p>Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
  11.  * except in compliance with the License. You may obtain a copy of the License at
  12.  * http://www.apache.org/licenses/LICENSE-2.0. You can also obtain a copy of the License at
  13.  * http://odftoolkit.org/docs/license.txt
  14.  *
  15.  * <p>Unless required by applicable law or agreed to in writing, software distributed under the
  16.  * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  17.  * express or implied.
  18.  *
  19.  * <p>See the License for the specific language governing permissions and limitations under the
  20.  * License.
  21.  *
  22.  * <p>**********************************************************************
  23.  */

  24. /*
  25.  * This file is automatically generated.
  26.  * Don't edit manually.
  27.  */
  28. package org.odftoolkit.odfdom.dom.element.draw;

  29. import org.odftoolkit.odfdom.dom.DefaultElementVisitor;
  30. import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
  31. import org.odftoolkit.odfdom.dom.attribute.draw.DrawCaptionIdAttribute;
  32. import org.odftoolkit.odfdom.dom.attribute.draw.DrawLayerAttribute;
  33. import org.odftoolkit.odfdom.dom.attribute.draw.DrawTextStyleNameAttribute;
  34. import org.odftoolkit.odfdom.dom.attribute.draw.DrawTransformAttribute;
  35. import org.odftoolkit.odfdom.dom.attribute.svg.SvgX1Attribute;
  36. import org.odftoolkit.odfdom.dom.attribute.svg.SvgX2Attribute;
  37. import org.odftoolkit.odfdom.dom.attribute.svg.SvgY1Attribute;
  38. import org.odftoolkit.odfdom.dom.attribute.svg.SvgY2Attribute;
  39. import org.odftoolkit.odfdom.dom.element.office.OfficeEventListenersElement;
  40. import org.odftoolkit.odfdom.dom.element.svg.SvgDescElement;
  41. import org.odftoolkit.odfdom.dom.element.svg.SvgTitleElement;
  42. import org.odftoolkit.odfdom.dom.element.text.TextListElement;
  43. import org.odftoolkit.odfdom.dom.element.text.TextPElement;
  44. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  45. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  46. import org.odftoolkit.odfdom.pkg.OdfName;

  47. /** DOM implementation of OpenDocument element {@odf.element draw:line}. */
  48. public class DrawLineElement extends DrawShapeElementBase {

  49.   public static final OdfName ELEMENT_NAME = OdfName.newName(OdfDocumentNamespace.DRAW, "line");

  50.   /**
  51.    * Create the instance of <code>DrawLineElement</code>
  52.    *
  53.    * @param ownerDoc The type is <code>OdfFileDom</code>
  54.    */
  55.   public DrawLineElement(OdfFileDom ownerDoc) {
  56.     super(ownerDoc, ELEMENT_NAME);
  57.   }

  58.   /**
  59.    * Get the element name
  60.    *
  61.    * @return return <code>OdfName</code> the name of element {@odf.element draw:line}.
  62.    */
  63.   public OdfName getOdfName() {
  64.     return ELEMENT_NAME;
  65.   }

  66.   /**
  67.    * Receives the value of the ODFDOM attribute representation <code>DrawCaptionIdAttribute</code> ,
  68.    * See {@odf.attribute draw:caption-id}
  69.    *
  70.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  71.    *     and no default value defined.
  72.    */
  73.   public String getDrawCaptionIdAttribute() {
  74.     DrawCaptionIdAttribute attr =
  75.         (DrawCaptionIdAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "caption-id");
  76.     if (attr != null) {
  77.       return String.valueOf(attr.getValue());
  78.     }
  79.     return null;
  80.   }

  81.   /**
  82.    * Sets the value of ODFDOM attribute representation <code>DrawCaptionIdAttribute</code> , See
  83.    * {@odf.attribute draw:caption-id}
  84.    *
  85.    * @param drawCaptionIdValue The type is <code>String</code>
  86.    */
  87.   public void setDrawCaptionIdAttribute(String drawCaptionIdValue) {
  88.     DrawCaptionIdAttribute attr = new DrawCaptionIdAttribute((OdfFileDom) this.ownerDocument);
  89.     setOdfAttribute(attr);
  90.     attr.setValue(drawCaptionIdValue);
  91.   }

  92.   /**
  93.    * Receives the value of the ODFDOM attribute representation <code>DrawLayerAttribute</code> , See
  94.    * {@odf.attribute draw:layer}
  95.    *
  96.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  97.    *     and no default value defined.
  98.    */
  99.   public String getDrawLayerAttribute() {
  100.     DrawLayerAttribute attr =
  101.         (DrawLayerAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "layer");
  102.     if (attr != null) {
  103.       return String.valueOf(attr.getValue());
  104.     }
  105.     return null;
  106.   }

  107.   /**
  108.    * Sets the value of ODFDOM attribute representation <code>DrawLayerAttribute</code> , See
  109.    * {@odf.attribute draw:layer}
  110.    *
  111.    * @param drawLayerValue The type is <code>String</code>
  112.    */
  113.   public void setDrawLayerAttribute(String drawLayerValue) {
  114.     DrawLayerAttribute attr = new DrawLayerAttribute((OdfFileDom) this.ownerDocument);
  115.     setOdfAttribute(attr);
  116.     attr.setValue(drawLayerValue);
  117.   }

  118.   /**
  119.    * Receives the value of the ODFDOM attribute representation <code>DrawTextStyleNameAttribute
  120.    * </code> , See {@odf.attribute draw:text-style-name}
  121.    *
  122.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  123.    *     and no default value defined.
  124.    */
  125.   public String getDrawTextStyleNameAttribute() {
  126.     DrawTextStyleNameAttribute attr =
  127.         (DrawTextStyleNameAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "text-style-name");
  128.     if (attr != null) {
  129.       return String.valueOf(attr.getValue());
  130.     }
  131.     return null;
  132.   }

  133.   /**
  134.    * Sets the value of ODFDOM attribute representation <code>DrawTextStyleNameAttribute</code> , See
  135.    * {@odf.attribute draw:text-style-name}
  136.    *
  137.    * @param drawTextStyleNameValue The type is <code>String</code>
  138.    */
  139.   public void setDrawTextStyleNameAttribute(String drawTextStyleNameValue) {
  140.     DrawTextStyleNameAttribute attr =
  141.         new DrawTextStyleNameAttribute((OdfFileDom) this.ownerDocument);
  142.     setOdfAttribute(attr);
  143.     attr.setValue(drawTextStyleNameValue);
  144.   }

  145.   /**
  146.    * Receives the value of the ODFDOM attribute representation <code>DrawTransformAttribute</code> ,
  147.    * See {@odf.attribute draw:transform}
  148.    *
  149.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  150.    *     and no default value defined.
  151.    */
  152.   public String getDrawTransformAttribute() {
  153.     DrawTransformAttribute attr =
  154.         (DrawTransformAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "transform");
  155.     if (attr != null) {
  156.       return String.valueOf(attr.getValue());
  157.     }
  158.     return null;
  159.   }

  160.   /**
  161.    * Sets the value of ODFDOM attribute representation <code>DrawTransformAttribute</code> , See
  162.    * {@odf.attribute draw:transform}
  163.    *
  164.    * @param drawTransformValue The type is <code>String</code>
  165.    */
  166.   public void setDrawTransformAttribute(String drawTransformValue) {
  167.     DrawTransformAttribute attr = new DrawTransformAttribute((OdfFileDom) this.ownerDocument);
  168.     setOdfAttribute(attr);
  169.     attr.setValue(drawTransformValue);
  170.   }

  171.   /**
  172.    * Receives the value of the ODFDOM attribute representation <code>SvgX1Attribute</code> , See
  173.    * {@odf.attribute svg:x1}
  174.    *
  175.    * <p>Attribute is mandatory.
  176.    *
  177.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  178.    *     and no default value defined.
  179.    */
  180.   public String getSvgX1Attribute() {
  181.     SvgX1Attribute attr = (SvgX1Attribute) getOdfAttribute(OdfDocumentNamespace.SVG, "x1");
  182.     if (attr != null) {
  183.       return String.valueOf(attr.getValue());
  184.     }
  185.     return null;
  186.   }

  187.   /**
  188.    * Sets the value of ODFDOM attribute representation <code>SvgX1Attribute</code> , See
  189.    * {@odf.attribute svg:x1}
  190.    *
  191.    * @param svgX1Value The type is <code>String</code>
  192.    */
  193.   public void setSvgX1Attribute(String svgX1Value) {
  194.     SvgX1Attribute attr = new SvgX1Attribute((OdfFileDom) this.ownerDocument);
  195.     setOdfAttribute(attr);
  196.     attr.setValue(svgX1Value);
  197.   }

  198.   /**
  199.    * Receives the value of the ODFDOM attribute representation <code>SvgX2Attribute</code> , See
  200.    * {@odf.attribute svg:x2}
  201.    *
  202.    * <p>Attribute is mandatory.
  203.    *
  204.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  205.    *     and no default value defined.
  206.    */
  207.   public String getSvgX2Attribute() {
  208.     SvgX2Attribute attr = (SvgX2Attribute) getOdfAttribute(OdfDocumentNamespace.SVG, "x2");
  209.     if (attr != null) {
  210.       return String.valueOf(attr.getValue());
  211.     }
  212.     return null;
  213.   }

  214.   /**
  215.    * Sets the value of ODFDOM attribute representation <code>SvgX2Attribute</code> , See
  216.    * {@odf.attribute svg:x2}
  217.    *
  218.    * @param svgX2Value The type is <code>String</code>
  219.    */
  220.   public void setSvgX2Attribute(String svgX2Value) {
  221.     SvgX2Attribute attr = new SvgX2Attribute((OdfFileDom) this.ownerDocument);
  222.     setOdfAttribute(attr);
  223.     attr.setValue(svgX2Value);
  224.   }

  225.   /**
  226.    * Receives the value of the ODFDOM attribute representation <code>SvgY1Attribute</code> , See
  227.    * {@odf.attribute svg:y1}
  228.    *
  229.    * <p>Attribute is mandatory.
  230.    *
  231.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  232.    *     and no default value defined.
  233.    */
  234.   public String getSvgY1Attribute() {
  235.     SvgY1Attribute attr = (SvgY1Attribute) getOdfAttribute(OdfDocumentNamespace.SVG, "y1");
  236.     if (attr != null) {
  237.       return String.valueOf(attr.getValue());
  238.     }
  239.     return null;
  240.   }

  241.   /**
  242.    * Sets the value of ODFDOM attribute representation <code>SvgY1Attribute</code> , See
  243.    * {@odf.attribute svg:y1}
  244.    *
  245.    * @param svgY1Value The type is <code>String</code>
  246.    */
  247.   public void setSvgY1Attribute(String svgY1Value) {
  248.     SvgY1Attribute attr = new SvgY1Attribute((OdfFileDom) this.ownerDocument);
  249.     setOdfAttribute(attr);
  250.     attr.setValue(svgY1Value);
  251.   }

  252.   /**
  253.    * Receives the value of the ODFDOM attribute representation <code>SvgY2Attribute</code> , See
  254.    * {@odf.attribute svg:y2}
  255.    *
  256.    * <p>Attribute is mandatory.
  257.    *
  258.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  259.    *     and no default value defined.
  260.    */
  261.   public String getSvgY2Attribute() {
  262.     SvgY2Attribute attr = (SvgY2Attribute) getOdfAttribute(OdfDocumentNamespace.SVG, "y2");
  263.     if (attr != null) {
  264.       return String.valueOf(attr.getValue());
  265.     }
  266.     return null;
  267.   }

  268.   /**
  269.    * Sets the value of ODFDOM attribute representation <code>SvgY2Attribute</code> , See
  270.    * {@odf.attribute svg:y2}
  271.    *
  272.    * @param svgY2Value The type is <code>String</code>
  273.    */
  274.   public void setSvgY2Attribute(String svgY2Value) {
  275.     SvgY2Attribute attr = new SvgY2Attribute((OdfFileDom) this.ownerDocument);
  276.     setOdfAttribute(attr);
  277.     attr.setValue(svgY2Value);
  278.   }

  279.   /**
  280.    * Create child element {@odf.element draw:glue-point}.
  281.    *
  282.    * @param drawEscapeDirectionValue the <code>String</code> value of <code>
  283.    *     DrawEscapeDirectionAttribute</code>, see {@odf.attribute draw:escape-direction} at
  284.    *     specification
  285.    * @param drawIdValue the <code>String</code> value of <code>DrawIdAttribute</code>, see
  286.    *     {@odf.attribute draw:id} at specification
  287.    * @param svgXValue the <code>String</code> value of <code>SvgXAttribute</code>, see
  288.    *     {@odf.attribute svg:x} at specification
  289.    * @param svgYValue the <code>String</code> value of <code>SvgYAttribute</code>, see
  290.    *     {@odf.attribute svg:y} at specification
  291.    * @return the element {@odf.element draw:glue-point}
  292.    */
  293.   public DrawGluePointElement newDrawGluePointElement(
  294.       String drawEscapeDirectionValue, String drawIdValue, String svgXValue, String svgYValue) {
  295.     DrawGluePointElement drawGluePoint =
  296.         ((OdfFileDom) this.ownerDocument).newOdfElement(DrawGluePointElement.class);
  297.     drawGluePoint.setDrawEscapeDirectionAttribute(drawEscapeDirectionValue);
  298.     drawGluePoint.setDrawIdAttribute(drawIdValue);
  299.     drawGluePoint.setSvgXAttribute(svgXValue);
  300.     drawGluePoint.setSvgYAttribute(svgYValue);
  301.     this.appendChild(drawGluePoint);
  302.     return drawGluePoint;
  303.   }

  304.   /**
  305.    * Create child element {@odf.element office:event-listeners}.
  306.    *
  307.    * @return the element {@odf.element office:event-listeners}
  308.    */
  309.   public OfficeEventListenersElement newOfficeEventListenersElement() {
  310.     OfficeEventListenersElement officeEventListeners =
  311.         ((OdfFileDom) this.ownerDocument).newOdfElement(OfficeEventListenersElement.class);
  312.     this.appendChild(officeEventListeners);
  313.     return officeEventListeners;
  314.   }

  315.   /**
  316.    * Create child element {@odf.element svg:desc}.
  317.    *
  318.    * @return the element {@odf.element svg:desc}
  319.    */
  320.   public SvgDescElement newSvgDescElement() {
  321.     SvgDescElement svgDesc = ((OdfFileDom) this.ownerDocument).newOdfElement(SvgDescElement.class);
  322.     this.appendChild(svgDesc);
  323.     return svgDesc;
  324.   }

  325.   /**
  326.    * Create child element {@odf.element svg:title}.
  327.    *
  328.    * @return the element {@odf.element svg:title}
  329.    */
  330.   public SvgTitleElement newSvgTitleElement() {
  331.     SvgTitleElement svgTitle =
  332.         ((OdfFileDom) this.ownerDocument).newOdfElement(SvgTitleElement.class);
  333.     this.appendChild(svgTitle);
  334.     return svgTitle;
  335.   }

  336.   /**
  337.    * Create child element {@odf.element text:list}.
  338.    *
  339.    * @return the element {@odf.element text:list}
  340.    */
  341.   public TextListElement newTextListElement() {
  342.     TextListElement textList =
  343.         ((OdfFileDom) this.ownerDocument).newOdfElement(TextListElement.class);
  344.     this.appendChild(textList);
  345.     return textList;
  346.   }

  347.   /**
  348.    * Create child element {@odf.element text:p}.
  349.    *
  350.    * @return the element {@odf.element text:p}
  351.    */
  352.   public TextPElement newTextPElement() {
  353.     TextPElement textP = ((OdfFileDom) this.ownerDocument).newOdfElement(TextPElement.class);
  354.     this.appendChild(textP);
  355.     return textP;
  356.   }

  357.   @Override
  358.   public void accept(ElementVisitor visitor) {
  359.     if (visitor instanceof DefaultElementVisitor) {
  360.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  361.       defaultVisitor.visit(this);
  362.     } else {
  363.       visitor.visit(this);
  364.     }
  365.   }
  366. }