This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #470 from AndreosGhost/Task07-Proxy
07-Proxy, Федоров Андрей, 393 группа
- Loading branch information
Showing
43 changed files
with
2,412 additions
and
654 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
src/ru/fizteh/fivt/students/fedorov_andrew/databaselibrary/db/AutoCloseableProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package ru.fizteh.fivt.students.fedorov_andrew.databaselibrary.db; | ||
|
||
import ru.fizteh.fivt.storage.structured.TableProvider; | ||
|
||
interface AutoCloseableProvider extends TableProvider, AutoCloseable { | ||
@Override | ||
void close(); | ||
} |
8 changes: 8 additions & 0 deletions
8
src/ru/fizteh/fivt/students/fedorov_andrew/databaselibrary/db/AutoCloseableTable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package ru.fizteh.fivt.students.fedorov_andrew.databaselibrary.db; | ||
|
||
import ru.fizteh.fivt.storage.structured.Table; | ||
|
||
interface AutoCloseableTable extends Table, AutoCloseable { | ||
@Override | ||
void close(); | ||
} |
499 changes: 282 additions & 217 deletions
499
src/ru/fizteh/fivt/students/fedorov_andrew/databaselibrary/db/DBTableProvider.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.