diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2020-04-02 22:37:45 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2020-04-02 22:37:45 +0000 |
commit | 3f7d718a67d7f2830b186557d200ecba00d8ac34 (patch) | |
tree | 52100ec7b6e4a7906a9302404661bd76badbb4aa /src/java/org/apache/poi/sl/draw/binding/CTPath2D.java | |
parent | 24c4f94962bba1f5fa884148b78ac71422d81f99 (diff) | |
download | poi-3f7d718a67d7f2830b186557d200ecba00d8ac34.tar.gz poi-3f7d718a67d7f2830b186557d200ecba00d8ac34.zip |
Sonar Fixes - The diamond operator ("<>") should be used
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1876064 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/sl/draw/binding/CTPath2D.java')
-rw-r--r-- | src/java/org/apache/poi/sl/draw/binding/CTPath2D.java | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/src/java/org/apache/poi/sl/draw/binding/CTPath2D.java b/src/java/org/apache/poi/sl/draw/binding/CTPath2D.java index 3556f34ed6..a7bea25728 100644 --- a/src/java/org/apache/poi/sl/draw/binding/CTPath2D.java +++ b/src/java/org/apache/poi/sl/draw/binding/CTPath2D.java @@ -19,6 +19,7 @@ package org.apache.poi.sl.draw.binding; import java.util.ArrayList; import java.util.List; + import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; @@ -29,9 +30,9 @@ import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CT_Path2D complex type. - * + * * <p>The following schema fragment specifies the expected content contained within this class. - * + * * <pre> * <complexType name="CT_Path2D"> * <complexContent> @@ -53,8 +54,8 @@ import javax.xml.bind.annotation.XmlType; * </complexContent> * </complexType> * </pre> - * - * + * + * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_Path2D", propOrder = { @@ -84,20 +85,20 @@ public class CTPath2D { /** * Gets the value of the closeOrMoveToOrLnTo property. - * + * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the closeOrMoveToOrLnTo property. - * + * * <p> * For example, to add a new item, do as follows: * <pre> * getCloseOrMoveToOrLnTo().add(newItem); * </pre> - * - * + * + * * <p> * Objects of the following type(s) are allowed in the list * {@link CTPath2DClose } @@ -106,12 +107,12 @@ public class CTPath2D { * {@link CTPath2DArcTo } * {@link CTPath2DQuadBezierTo } * {@link CTPath2DCubicBezierTo } - * - * + * + * */ public List<Object> getCloseOrMoveToOrLnTo() { if (closeOrMoveToOrLnTo == null) { - closeOrMoveToOrLnTo = new ArrayList<Object>(); + closeOrMoveToOrLnTo = new ArrayList<>(); } return this.closeOrMoveToOrLnTo; } @@ -126,11 +127,11 @@ public class CTPath2D { /** * Gets the value of the w property. - * + * * @return * possible object is * {@link Long } - * + * */ public long getW() { if (w == null) { @@ -142,11 +143,11 @@ public class CTPath2D { /** * Sets the value of the w property. - * + * * @param value * allowed object is * {@link Long } - * + * */ public void setW(long value) { this.w = value; @@ -162,11 +163,11 @@ public class CTPath2D { /** * Gets the value of the h property. - * + * * @return * possible object is * {@link Long } - * + * */ public long getH() { if (h == null) { @@ -178,11 +179,11 @@ public class CTPath2D { /** * Sets the value of the h property. - * + * * @param value * allowed object is * {@link Long } - * + * */ public void setH(long value) { this.h = value; @@ -198,11 +199,11 @@ public class CTPath2D { /** * Gets the value of the fill property. - * + * * @return * possible object is * {@link STPathFillMode } - * + * */ public STPathFillMode getFill() { if (fill == null) { @@ -214,11 +215,11 @@ public class CTPath2D { /** * Sets the value of the fill property. - * + * * @param value * allowed object is * {@link STPathFillMode } - * + * */ public void setFill(STPathFillMode value) { this.fill = value; @@ -230,11 +231,11 @@ public class CTPath2D { /** * Gets the value of the stroke property. - * + * * @return * possible object is * {@link Boolean } - * + * */ public boolean isStroke() { if (stroke == null) { @@ -246,11 +247,11 @@ public class CTPath2D { /** * Sets the value of the stroke property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ public void setStroke(boolean value) { this.stroke = value; @@ -266,11 +267,11 @@ public class CTPath2D { /** * Gets the value of the extrusionOk property. - * + * * @return * possible object is * {@link Boolean } - * + * */ public boolean isExtrusionOk() { if (extrusionOk == null) { @@ -282,11 +283,11 @@ public class CTPath2D { /** * Sets the value of the extrusionOk property. - * + * * @param value * allowed object is * {@link Boolean } - * + * */ public void setExtrusionOk(boolean value) { this.extrusionOk = value; |