aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/pdf/PDFNumberTreeNode.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/pdf/PDFNumberTreeNode.java')
-rw-r--r--src/java/org/apache/fop/pdf/PDFNumberTreeNode.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/pdf/PDFNumberTreeNode.java b/src/java/org/apache/fop/pdf/PDFNumberTreeNode.java
index ef1ccb452..72fbcd1c6 100644
--- a/src/java/org/apache/fop/pdf/PDFNumberTreeNode.java
+++ b/src/java/org/apache/fop/pdf/PDFNumberTreeNode.java
@@ -43,7 +43,7 @@ public class PDFNumberTreeNode extends PDFDictionary {
public void setKids(PDFArray kids) {
put(KIDS, kids);
}
-
+
/**
* Returns the Kids array.
* @return the Kids array
@@ -51,7 +51,7 @@ public class PDFNumberTreeNode extends PDFDictionary {
public PDFArray getKids() {
return (PDFArray)get(KIDS);
}
-
+
/**
* Sets the Nums array.
* @param nums the Nums array
@@ -59,7 +59,7 @@ public class PDFNumberTreeNode extends PDFDictionary {
public void setNums(PDFNumsArray nums) {
put(NUMS, nums);
}
-
+
/**
* Returns the Nums array.
* @return the Nums array
@@ -67,7 +67,7 @@ public class PDFNumberTreeNode extends PDFDictionary {
public PDFNumsArray getNums() {
return (PDFNumsArray)get(NUMS);
}
-
+
/**
* Sets the lower limit value of the Limits array.
* @param key the lower limit value
@@ -116,6 +116,6 @@ public class PDFNumberTreeNode extends PDFDictionary {
}
return limits;
}
-
+
}