aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java')
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java32
1 files changed, 31 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java b/src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java
index 32422168b5..91bbd5b952 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFAnchor.java
@@ -57,27 +57,57 @@ public abstract class HSSFAnchor {
}
}
+ /**
+ * @return x coordinate of the left up corner
+ */
public abstract int getDx1();
+ /**
+ * @param dx1 x coordinate of the left up corner
+ */
public abstract void setDx1(int dx1);
+ /**
+ * @return y coordinate of the left up corner
+ */
public abstract int getDy1();
+ /**
+ * @param dy1 y coordinate of the left up corner
+ */
public abstract void setDy1(int dy1);
+ /**
+ * @return y coordinate of the right down corner
+ */
public abstract int getDy2();
+ /**
+ * @param dy2 y coordinate of the right down corner
+ */
public abstract void setDy2(int dy2);
+ /**
+ * @return x coordinate of the right down corner
+ */
public abstract int getDx2();
+ /**
+ * @param dx2 x coordinate of the right down corner
+ */
public abstract void setDx2(int dx2);
+ /**
+ * @return whether this shape is horizontally flipped
+ */
public abstract boolean isHorizontallyFlipped();
+ /**
+ * @return whether this shape is vertically flipped
+ */
public abstract boolean isVerticallyFlipped();
- public abstract EscherRecord getEscherAnchor();
+ protected abstract EscherRecord getEscherAnchor();
protected abstract void createEscherAnchor();
}