1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
diff -ur mckoi1.0.3.orig/src/com/mckoi/store/JournalledSystem.java mckoi1.0.3/src/com/mckoi/store/JournalledSystem.java
--- mckoi1.0.3.orig/src/com/mckoi/store/JournalledSystem.java 2004-08-15 22:14:58.000000000 +0200
+++ mckoi1.0.3/src/com/mckoi/store/JournalledSystem.java 2004-12-20 13:19:07.808868672 +0100
@@ -1047,7 +1047,7 @@
/**
* The journal file.
*/
- private final JournalFile journal;
+ private final com.mckoi.store.JournalledSystem.JournalFile journal;
/**
* The position in the journal file.
@@ -1069,7 +1069,7 @@
/**
* Constructs the entry.
*/
- public JournalEntry(String resource_name, JournalFile journal,
+ public JournalEntry(String resource_name, com.mckoi.store.JournalledSystem.JournalFile journal,
long position, long page_number) {
this.resource_name = resource_name;
this.journal = journal;
@@ -1080,7 +1080,7 @@
/**
* Returns the journal file for this entry.
*/
- public JournalFile getJournalFile() {
+ public com.mckoi.store.JournalledSystem.JournalFile getJournalFile() {
return journal;
}
@@ -1716,7 +1716,7 @@
/**
* The JournalFile object that is a summary of.
*/
- JournalFile journal_file;
+ com.mckoi.store.JournalledSystem.JournalFile journal_file;
/**
* True if the journal is recoverable (has one or more complete check
@@ -1737,7 +1737,7 @@
/**
* Constructor.
*/
- public JournalSummary(JournalFile journal_file) {
+ public JournalSummary(com.mckoi.store.JournalledSystem.JournalFile journal_file) {
this.journal_file = journal_file;
}
|