Skip to content

Commit

Permalink
Make same change to multi-app as single-app.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewauclair committed Dec 12, 2023
1 parent b4f0e51 commit a72dde3
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 8 deletions.
1 change: 1 addition & 0 deletions demo-multi-app/src/basic/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ of this software and associated documentation files (the "Software"), to deal
import ModernDocking.*;
import ModernDocking.api.DockingAPI;
import ModernDocking.api.RootDockingPanelAPI;
import ModernDocking.app.*;
import ModernDocking.exception.DockingLayoutException;
import ModernDocking.layouts.ApplicationLayout;
import ModernDocking.layouts.DockingLayouts;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;
import ModernDocking.layouts.ApplicationLayout;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.Dockable;
import ModernDocking.api.DockingAPI;
import ModernDocking.internal.DockingInternal;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;
import ModernDocking.api.DockingStateAPI;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;
import ModernDocking.api.LayoutPersistenceAPI;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;
import ModernDocking.event.DockingLayoutEvent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;
import ModernDocking.api.RootDockingPanelAPI;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package ModernDocking;
package ModernDocking.app;

import ModernDocking.api.DockingAPI;
import ModernDocking.api.WindowLayoutBuilderAPI;
Expand Down
9 changes: 9 additions & 0 deletions docking-multi-app/src/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* Module for the Modern Docking framework
*/
module modern_docking.multi_app {
requires modern_docking.api;
requires java.desktop;

exports ModernDocking.app;
}

0 comments on commit a72dde3

Please sign in to comment.