aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/healthmarketscience/jackcess/Table.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/healthmarketscience/jackcess/Table.java')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/Table.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/Table.java b/src/main/java/com/healthmarketscience/jackcess/Table.java
index 9eb2b15..5462e80 100644
--- a/src/main/java/com/healthmarketscience/jackcess/Table.java
+++ b/src/main/java/com/healthmarketscience/jackcess/Table.java
@@ -17,6 +17,7 @@ limitations under the License.
package com.healthmarketscience.jackcess;
import java.io.IOException;
+import java.time.LocalDateTime;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
@@ -134,6 +135,21 @@ public interface Table extends Iterable<Row>
public PropertyMap getProperties() throws IOException;
/**
+ * @return the created date for this table if available
+ * @usage _general_method_
+ */
+ public LocalDateTime getCreatedDate() throws IOException;
+
+ /**
+ * Note: jackcess <i>does not automatically update the modified date of a
+ * Table</i>.
+ *
+ * @return the last updated date for this table if available
+ * @usage _general_method_
+ */
+ public LocalDateTime getUpdatedDate() throws IOException;
+
+ /**
* @return All of the Indexes on this table (unmodifiable List)
* @usage _intermediate_method_
*/