-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to choose a non permanent directory
- Loading branch information
1 parent
ce35572
commit 774851b
Showing
7 changed files
with
57 additions
and
26 deletions.
There are no files selected for viewing
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
3 changes: 0 additions & 3 deletions
3
fsaf/src/main/java/com/github/k1rakishou/fsaf/callback/DirectoryChooserCallback.kt
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
fsaf/src/main/java/com/github/k1rakishou/fsaf/callback/directory/DirectoryChooserCallback.kt
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,5 @@ | ||
package com.github.k1rakishou.fsaf.callback.directory | ||
|
||
import com.github.k1rakishou.fsaf.callback.ChooserCallback | ||
|
||
abstract class DirectoryChooserCallback : ChooserCallback |
3 changes: 3 additions & 0 deletions
3
...n/java/com/github/k1rakishou/fsaf/callback/directory/PermanentDirectoryChooserCallback.kt
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,3 @@ | ||
package com.github.k1rakishou.fsaf.callback.directory | ||
|
||
abstract class PermanentDirectoryChooserCallback : DirectoryChooserCallback() |
3 changes: 3 additions & 0 deletions
3
...src/main/java/com/github/k1rakishou/fsaf/callback/directory/TemporaryDirectoryCallback.kt
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,3 @@ | ||
package com.github.k1rakishou.fsaf.callback.directory | ||
|
||
abstract class TemporaryDirectoryCallback : DirectoryChooserCallback() |
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