DrawCaptionElement.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.DrawCaptionPointXAttribute;
  33. import org.odftoolkit.odfdom.dom.attribute.draw.DrawCaptionPointYAttribute;
  34. import org.odftoolkit.odfdom.dom.attribute.draw.DrawCornerRadiusAttribute;
  35. import org.odftoolkit.odfdom.dom.attribute.draw.DrawLayerAttribute;
  36. import org.odftoolkit.odfdom.dom.attribute.draw.DrawTextStyleNameAttribute;
  37. import org.odftoolkit.odfdom.dom.attribute.draw.DrawTransformAttribute;
  38. import org.odftoolkit.odfdom.dom.attribute.svg.SvgHeightAttribute;
  39. import org.odftoolkit.odfdom.dom.attribute.svg.SvgWidthAttribute;
  40. import org.odftoolkit.odfdom.dom.attribute.svg.SvgXAttribute;
  41. import org.odftoolkit.odfdom.dom.attribute.svg.SvgYAttribute;
  42. import org.odftoolkit.odfdom.dom.element.office.OfficeEventListenersElement;
  43. import org.odftoolkit.odfdom.dom.element.svg.SvgDescElement;
  44. import org.odftoolkit.odfdom.dom.element.svg.SvgTitleElement;
  45. import org.odftoolkit.odfdom.dom.element.text.TextListElement;
  46. import org.odftoolkit.odfdom.dom.element.text.TextPElement;
  47. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  48. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  49. import org.odftoolkit.odfdom.pkg.OdfName;

  50. /** DOM implementation of OpenDocument element {@odf.element draw:caption}. */
  51. public class DrawCaptionElement extends DrawShapeElementBase {

  52.   public static final OdfName ELEMENT_NAME = OdfName.newName(OdfDocumentNamespace.DRAW, "caption");

  53.   /**
  54.    * Create the instance of <code>DrawCaptionElement</code>
  55.    *
  56.    * @param ownerDoc The type is <code>OdfFileDom</code>
  57.    */
  58.   public DrawCaptionElement(OdfFileDom ownerDoc) {
  59.     super(ownerDoc, ELEMENT_NAME);
  60.   }

  61.   /**
  62.    * Get the element name
  63.    *
  64.    * @return return <code>OdfName</code> the name of element {@odf.element draw:caption}.
  65.    */
  66.   public OdfName getOdfName() {
  67.     return ELEMENT_NAME;
  68.   }

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

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

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

  110.   /**
  111.    * Sets the value of ODFDOM attribute representation <code>DrawCaptionPointXAttribute</code> , See
  112.    * {@odf.attribute draw:caption-point-x}
  113.    *
  114.    * @param drawCaptionPointXValue The type is <code>String</code>
  115.    */
  116.   public void setDrawCaptionPointXAttribute(String drawCaptionPointXValue) {
  117.     DrawCaptionPointXAttribute attr =
  118.         new DrawCaptionPointXAttribute((OdfFileDom) this.ownerDocument);
  119.     setOdfAttribute(attr);
  120.     attr.setValue(drawCaptionPointXValue);
  121.   }

  122.   /**
  123.    * Receives the value of the ODFDOM attribute representation <code>DrawCaptionPointYAttribute
  124.    * </code> , See {@odf.attribute draw:caption-point-y}
  125.    *
  126.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  127.    *     and no default value defined.
  128.    */
  129.   public String getDrawCaptionPointYAttribute() {
  130.     DrawCaptionPointYAttribute attr =
  131.         (DrawCaptionPointYAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "caption-point-y");
  132.     if (attr != null) {
  133.       return String.valueOf(attr.getValue());
  134.     }
  135.     return null;
  136.   }

  137.   /**
  138.    * Sets the value of ODFDOM attribute representation <code>DrawCaptionPointYAttribute</code> , See
  139.    * {@odf.attribute draw:caption-point-y}
  140.    *
  141.    * @param drawCaptionPointYValue The type is <code>String</code>
  142.    */
  143.   public void setDrawCaptionPointYAttribute(String drawCaptionPointYValue) {
  144.     DrawCaptionPointYAttribute attr =
  145.         new DrawCaptionPointYAttribute((OdfFileDom) this.ownerDocument);
  146.     setOdfAttribute(attr);
  147.     attr.setValue(drawCaptionPointYValue);
  148.   }

  149.   /**
  150.    * Receives the value of the ODFDOM attribute representation <code>DrawCornerRadiusAttribute
  151.    * </code> , See {@odf.attribute draw:corner-radius}
  152.    *
  153.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  154.    *     and no default value defined.
  155.    */
  156.   public String getDrawCornerRadiusAttribute() {
  157.     DrawCornerRadiusAttribute attr =
  158.         (DrawCornerRadiusAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "corner-radius");
  159.     if (attr != null) {
  160.       return String.valueOf(attr.getValue());
  161.     }
  162.     return null;
  163.   }

  164.   /**
  165.    * Sets the value of ODFDOM attribute representation <code>DrawCornerRadiusAttribute</code> , See
  166.    * {@odf.attribute draw:corner-radius}
  167.    *
  168.    * @param drawCornerRadiusValue The type is <code>String</code>
  169.    */
  170.   public void setDrawCornerRadiusAttribute(String drawCornerRadiusValue) {
  171.     DrawCornerRadiusAttribute attr = new DrawCornerRadiusAttribute((OdfFileDom) this.ownerDocument);
  172.     setOdfAttribute(attr);
  173.     attr.setValue(drawCornerRadiusValue);
  174.   }

  175.   /**
  176.    * Receives the value of the ODFDOM attribute representation <code>DrawLayerAttribute</code> , See
  177.    * {@odf.attribute draw:layer}
  178.    *
  179.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  180.    *     and no default value defined.
  181.    */
  182.   public String getDrawLayerAttribute() {
  183.     DrawLayerAttribute attr =
  184.         (DrawLayerAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "layer");
  185.     if (attr != null) {
  186.       return String.valueOf(attr.getValue());
  187.     }
  188.     return null;
  189.   }

  190.   /**
  191.    * Sets the value of ODFDOM attribute representation <code>DrawLayerAttribute</code> , See
  192.    * {@odf.attribute draw:layer}
  193.    *
  194.    * @param drawLayerValue The type is <code>String</code>
  195.    */
  196.   public void setDrawLayerAttribute(String drawLayerValue) {
  197.     DrawLayerAttribute attr = new DrawLayerAttribute((OdfFileDom) this.ownerDocument);
  198.     setOdfAttribute(attr);
  199.     attr.setValue(drawLayerValue);
  200.   }

  201.   /**
  202.    * Receives the value of the ODFDOM attribute representation <code>DrawTextStyleNameAttribute
  203.    * </code> , See {@odf.attribute draw:text-style-name}
  204.    *
  205.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  206.    *     and no default value defined.
  207.    */
  208.   public String getDrawTextStyleNameAttribute() {
  209.     DrawTextStyleNameAttribute attr =
  210.         (DrawTextStyleNameAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "text-style-name");
  211.     if (attr != null) {
  212.       return String.valueOf(attr.getValue());
  213.     }
  214.     return null;
  215.   }

  216.   /**
  217.    * Sets the value of ODFDOM attribute representation <code>DrawTextStyleNameAttribute</code> , See
  218.    * {@odf.attribute draw:text-style-name}
  219.    *
  220.    * @param drawTextStyleNameValue The type is <code>String</code>
  221.    */
  222.   public void setDrawTextStyleNameAttribute(String drawTextStyleNameValue) {
  223.     DrawTextStyleNameAttribute attr =
  224.         new DrawTextStyleNameAttribute((OdfFileDom) this.ownerDocument);
  225.     setOdfAttribute(attr);
  226.     attr.setValue(drawTextStyleNameValue);
  227.   }

  228.   /**
  229.    * Receives the value of the ODFDOM attribute representation <code>DrawTransformAttribute</code> ,
  230.    * See {@odf.attribute draw:transform}
  231.    *
  232.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  233.    *     and no default value defined.
  234.    */
  235.   public String getDrawTransformAttribute() {
  236.     DrawTransformAttribute attr =
  237.         (DrawTransformAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "transform");
  238.     if (attr != null) {
  239.       return String.valueOf(attr.getValue());
  240.     }
  241.     return null;
  242.   }

  243.   /**
  244.    * Sets the value of ODFDOM attribute representation <code>DrawTransformAttribute</code> , See
  245.    * {@odf.attribute draw:transform}
  246.    *
  247.    * @param drawTransformValue The type is <code>String</code>
  248.    */
  249.   public void setDrawTransformAttribute(String drawTransformValue) {
  250.     DrawTransformAttribute attr = new DrawTransformAttribute((OdfFileDom) this.ownerDocument);
  251.     setOdfAttribute(attr);
  252.     attr.setValue(drawTransformValue);
  253.   }

  254.   /**
  255.    * Receives the value of the ODFDOM attribute representation <code>SvgHeightAttribute</code> , See
  256.    * {@odf.attribute svg:height}
  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 getSvgHeightAttribute() {
  262.     SvgHeightAttribute attr =
  263.         (SvgHeightAttribute) getOdfAttribute(OdfDocumentNamespace.SVG, "height");
  264.     if (attr != null) {
  265.       return String.valueOf(attr.getValue());
  266.     }
  267.     return null;
  268.   }

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

  280.   /**
  281.    * Receives the value of the ODFDOM attribute representation <code>SvgWidthAttribute</code> , See
  282.    * {@odf.attribute svg:width}
  283.    *
  284.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  285.    *     and no default value defined.
  286.    */
  287.   public String getSvgWidthAttribute() {
  288.     SvgWidthAttribute attr = (SvgWidthAttribute) getOdfAttribute(OdfDocumentNamespace.SVG, "width");
  289.     if (attr != null) {
  290.       return String.valueOf(attr.getValue());
  291.     }
  292.     return null;
  293.   }

  294.   /**
  295.    * Sets the value of ODFDOM attribute representation <code>SvgWidthAttribute</code> , See
  296.    * {@odf.attribute svg:width}
  297.    *
  298.    * @param svgWidthValue The type is <code>String</code>
  299.    */
  300.   public void setSvgWidthAttribute(String svgWidthValue) {
  301.     SvgWidthAttribute attr = new SvgWidthAttribute((OdfFileDom) this.ownerDocument);
  302.     setOdfAttribute(attr);
  303.     attr.setValue(svgWidthValue);
  304.   }

  305.   /**
  306.    * Receives the value of the ODFDOM attribute representation <code>SvgXAttribute</code> , See
  307.    * {@odf.attribute svg:x}
  308.    *
  309.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  310.    *     and no default value defined.
  311.    */
  312.   public String getSvgXAttribute() {
  313.     SvgXAttribute attr = (SvgXAttribute) getOdfAttribute(OdfDocumentNamespace.SVG, "x");
  314.     if (attr != null) {
  315.       return String.valueOf(attr.getValue());
  316.     }
  317.     return null;
  318.   }

  319.   /**
  320.    * Sets the value of ODFDOM attribute representation <code>SvgXAttribute</code> , See
  321.    * {@odf.attribute svg:x}
  322.    *
  323.    * @param svgXValue The type is <code>String</code>
  324.    */
  325.   public void setSvgXAttribute(String svgXValue) {
  326.     SvgXAttribute attr = new SvgXAttribute((OdfFileDom) this.ownerDocument);
  327.     setOdfAttribute(attr);
  328.     attr.setValue(svgXValue);
  329.   }

  330.   /**
  331.    * Receives the value of the ODFDOM attribute representation <code>SvgYAttribute</code> , See
  332.    * {@odf.attribute svg:y}
  333.    *
  334.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  335.    *     and no default value defined.
  336.    */
  337.   public String getSvgYAttribute() {
  338.     SvgYAttribute attr = (SvgYAttribute) getOdfAttribute(OdfDocumentNamespace.SVG, "y");
  339.     if (attr != null) {
  340.       return String.valueOf(attr.getValue());
  341.     }
  342.     return null;
  343.   }

  344.   /**
  345.    * Sets the value of ODFDOM attribute representation <code>SvgYAttribute</code> , See
  346.    * {@odf.attribute svg:y}
  347.    *
  348.    * @param svgYValue The type is <code>String</code>
  349.    */
  350.   public void setSvgYAttribute(String svgYValue) {
  351.     SvgYAttribute attr = new SvgYAttribute((OdfFileDom) this.ownerDocument);
  352.     setOdfAttribute(attr);
  353.     attr.setValue(svgYValue);
  354.   }

  355.   /**
  356.    * Create child element {@odf.element draw:glue-point}.
  357.    *
  358.    * @param drawEscapeDirectionValue the <code>String</code> value of <code>
  359.    *     DrawEscapeDirectionAttribute</code>, see {@odf.attribute draw:escape-direction} at
  360.    *     specification
  361.    * @param drawIdValue the <code>String</code> value of <code>DrawIdAttribute</code>, see
  362.    *     {@odf.attribute draw:id} at specification
  363.    * @param svgXValue the <code>String</code> value of <code>SvgXAttribute</code>, see
  364.    *     {@odf.attribute svg:x} at specification
  365.    * @param svgYValue the <code>String</code> value of <code>SvgYAttribute</code>, see
  366.    *     {@odf.attribute svg:y} at specification
  367.    * @return the element {@odf.element draw:glue-point}
  368.    */
  369.   public DrawGluePointElement newDrawGluePointElement(
  370.       String drawEscapeDirectionValue, String drawIdValue, String svgXValue, String svgYValue) {
  371.     DrawGluePointElement drawGluePoint =
  372.         ((OdfFileDom) this.ownerDocument).newOdfElement(DrawGluePointElement.class);
  373.     drawGluePoint.setDrawEscapeDirectionAttribute(drawEscapeDirectionValue);
  374.     drawGluePoint.setDrawIdAttribute(drawIdValue);
  375.     drawGluePoint.setSvgXAttribute(svgXValue);
  376.     drawGluePoint.setSvgYAttribute(svgYValue);
  377.     this.appendChild(drawGluePoint);
  378.     return drawGluePoint;
  379.   }

  380.   /**
  381.    * Create child element {@odf.element office:event-listeners}.
  382.    *
  383.    * @return the element {@odf.element office:event-listeners}
  384.    */
  385.   public OfficeEventListenersElement newOfficeEventListenersElement() {
  386.     OfficeEventListenersElement officeEventListeners =
  387.         ((OdfFileDom) this.ownerDocument).newOdfElement(OfficeEventListenersElement.class);
  388.     this.appendChild(officeEventListeners);
  389.     return officeEventListeners;
  390.   }

  391.   /**
  392.    * Create child element {@odf.element svg:desc}.
  393.    *
  394.    * @return the element {@odf.element svg:desc}
  395.    */
  396.   public SvgDescElement newSvgDescElement() {
  397.     SvgDescElement svgDesc = ((OdfFileDom) this.ownerDocument).newOdfElement(SvgDescElement.class);
  398.     this.appendChild(svgDesc);
  399.     return svgDesc;
  400.   }

  401.   /**
  402.    * Create child element {@odf.element svg:title}.
  403.    *
  404.    * @return the element {@odf.element svg:title}
  405.    */
  406.   public SvgTitleElement newSvgTitleElement() {
  407.     SvgTitleElement svgTitle =
  408.         ((OdfFileDom) this.ownerDocument).newOdfElement(SvgTitleElement.class);
  409.     this.appendChild(svgTitle);
  410.     return svgTitle;
  411.   }

  412.   /**
  413.    * Create child element {@odf.element text:list}.
  414.    *
  415.    * @return the element {@odf.element text:list}
  416.    */
  417.   public TextListElement newTextListElement() {
  418.     TextListElement textList =
  419.         ((OdfFileDom) this.ownerDocument).newOdfElement(TextListElement.class);
  420.     this.appendChild(textList);
  421.     return textList;
  422.   }

  423.   /**
  424.    * Create child element {@odf.element text:p}.
  425.    *
  426.    * @return the element {@odf.element text:p}
  427.    */
  428.   public TextPElement newTextPElement() {
  429.     TextPElement textP = ((OdfFileDom) this.ownerDocument).newOdfElement(TextPElement.class);
  430.     this.appendChild(textP);
  431.     return textP;
  432.   }

  433.   @Override
  434.   public void accept(ElementVisitor visitor) {
  435.     if (visitor instanceof DefaultElementVisitor) {
  436.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  437.       defaultVisitor.visit(this);
  438.     } else {
  439.       visitor.visit(this);
  440.     }
  441.   }
  442. }