Moves some classes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.main;
|
||||
|
||||
/**
|
||||
* Controller for the main view
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.main;
|
||||
|
||||
/**
|
||||
* Model for the main view
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.media;
|
||||
|
||||
/**
|
||||
* Controller for the media view
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.media;
|
||||
|
||||
import com.github.gtache.autosubtitle.Video;
|
||||
import com.github.gtache.autosubtitle.subtitle.EditableSubtitle;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.parameters;
|
||||
|
||||
/**
|
||||
* Controller for the parameters view
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.parameters;
|
||||
|
||||
import com.github.gtache.autosubtitle.subtitle.OutputFormat;
|
||||
import com.github.gtache.autosubtitle.subtitle.extractor.ExtractionModel;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.setup;
|
||||
|
||||
/**
|
||||
* Controller for the setup view
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.setup;
|
||||
|
||||
import com.github.gtache.autosubtitle.setup.SetupStatus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.subtitles;
|
||||
|
||||
import com.github.gtache.autosubtitle.Language;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.subtitles;
|
||||
|
||||
import com.github.gtache.autosubtitle.Language;
|
||||
import com.github.gtache.autosubtitle.VideoInfo;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.work;
|
||||
|
||||
import java.nio.file.Path;
|
||||
|
||||
@@ -18,7 +18,7 @@ public interface WorkController {
|
||||
* @param file The path to the video
|
||||
*/
|
||||
void loadVideo(final Path file);
|
||||
|
||||
|
||||
/**
|
||||
* @return The model
|
||||
*/
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.work;
|
||||
|
||||
import com.github.gtache.autosubtitle.Video;
|
||||
import com.github.gtache.autosubtitle.subtitle.SubtitleCollection;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.gtache.autosubtitle.gui;
|
||||
package com.github.gtache.autosubtitle.gui.work;
|
||||
|
||||
/**
|
||||
* Possible statuses for the work controller
|
||||
@@ -4,4 +4,10 @@
|
||||
module com.github.gtache.autosubtitle.gui.api {
|
||||
requires transitive com.github.gtache.autosubtitle.api;
|
||||
exports com.github.gtache.autosubtitle.gui;
|
||||
exports com.github.gtache.autosubtitle.gui.main;
|
||||
exports com.github.gtache.autosubtitle.gui.media;
|
||||
exports com.github.gtache.autosubtitle.gui.parameters;
|
||||
exports com.github.gtache.autosubtitle.gui.setup;
|
||||
exports com.github.gtache.autosubtitle.gui.subtitles;
|
||||
exports com.github.gtache.autosubtitle.gui.work;
|
||||
}
|
||||
Reference in New Issue
Block a user