Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 75112
Collapse All | Expand All

(-)mckoi1.0.3.orig/src/com/mckoi/store/JournalledSystem.java (-5 / +5 lines)
Lines 1047-1053 Link Here
1047
    /**
1047
    /**
1048
     * The journal file.
1048
     * The journal file.
1049
     */
1049
     */
1050
    private final JournalFile journal;
1050
    private final com.mckoi.store.JournalledSystem.JournalFile journal;
1051
1051
1052
    /**
1052
    /**
1053
     * The position in the journal file.
1053
     * The position in the journal file.
Lines 1069-1075 Link Here
1069
    /**
1069
    /**
1070
     * Constructs the entry.
1070
     * Constructs the entry.
1071
     */
1071
     */
1072
    public JournalEntry(String resource_name, JournalFile journal,
1072
    public JournalEntry(String resource_name, com.mckoi.store.JournalledSystem.JournalFile journal,
1073
                        long position, long page_number) {
1073
                        long position, long page_number) {
1074
      this.resource_name = resource_name;
1074
      this.resource_name = resource_name;
1075
      this.journal = journal;
1075
      this.journal = journal;
Lines 1080-1086 Link Here
1080
    /**
1080
    /**
1081
     * Returns the journal file for this entry.
1081
     * Returns the journal file for this entry.
1082
     */
1082
     */
1083
    public JournalFile getJournalFile() {
1083
    public com.mckoi.store.JournalledSystem.JournalFile getJournalFile() {
1084
      return journal;
1084
      return journal;
1085
    }
1085
    }
1086
1086
Lines 1716-1722 Link Here
1716
    /**
1716
    /**
1717
     * The JournalFile object that is a summary of.
1717
     * The JournalFile object that is a summary of.
1718
     */
1718
     */
1719
    JournalFile journal_file;
1719
    com.mckoi.store.JournalledSystem.JournalFile journal_file;
1720
1720
1721
    /**
1721
    /**
1722
     * True if the journal is recoverable (has one or more complete check
1722
     * True if the journal is recoverable (has one or more complete check
Lines 1737-1743 Link Here
1737
    /**
1737
    /**
1738
     * Constructor.
1738
     * Constructor.
1739
     */
1739
     */
1740
    public JournalSummary(JournalFile journal_file) {
1740
    public JournalSummary(com.mckoi.store.JournalledSystem.JournalFile journal_file) {
1741
      this.journal_file = journal_file;
1741
      this.journal_file = journal_file;
1742
    }
1742
    }
1743
    
1743
    

Return to bug 75112