aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2008-01-17 03:19:46 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2008-01-17 03:19:46 +0000
commit2e2ed1f735aaec8e4dc26541a4f193ec15490648 (patch)
tree660c7ac2a22d5ca5fa819d3ce90886a527b83889
parent5d9718216d85b6360214a12370a67970c6221574 (diff)
downloadjackcess-2e2ed1f735aaec8e4dc26541a4f193ec15490648.tar.gz
jackcess-2e2ed1f735aaec8e4dc26541a4f193ec15490648.zip
fix some comments
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@216 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r--src/java/com/healthmarketscience/jackcess/UsageMap.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/UsageMap.java b/src/java/com/healthmarketscience/jackcess/UsageMap.java
index 00d87c7..c0bbd8b 100644
--- a/src/java/com/healthmarketscience/jackcess/UsageMap.java
+++ b/src/java/com/healthmarketscience/jackcess/UsageMap.java
@@ -401,10 +401,11 @@ public class UsageMap
}
/**
- * Usage map whose map is written inline in the same page. This type of map
- * can contain a maximum of 512 pages, and is always used for free space
- * maps. It has a start page, which all page numbers in its map are
- * calculated as starting from.
+ * Usage map whose map is written inline in the same page. For Jet4, this
+ * type of map can contain a maximum of 512 pages. Free space maps are
+ * always inline, used space maps may be inline or reference. It has a
+ * start page, which all page numbers in its map are calculated as starting
+ * from.
* @author Tim McCune
*/
private class InlineHandler extends Handler
@@ -601,9 +602,9 @@ public class UsageMap
/**
* Usage map whose map is written across one or more entire separate pages
- * of page type USAGE_MAP. This type of map can contain 32736 pages per
- * reference page, and a maximum of 16 reference map pages for a total
- * maximum of 523776 pages (2 GB).
+ * of page type USAGE_MAP. For Jet4, this type of map can contain 32736
+ * pages per reference page, and a maximum of 17 reference map pages for a
+ * total maximum of 556512 pages (2 GB).
* @author Tim McCune
*/
private class ReferenceHandler extends Handler