1
0

#12 App widgets

This commit is contained in:
2022-08-12 22:26:17 +02:00
parent e47af45211
commit f4d9f4bab7
17 changed files with 218 additions and 8 deletions

View File

@@ -1,5 +1,8 @@
package de.nbscloud.webcontainer.registry;
import java.util.Collection;
import java.util.Collections;
public interface App {
// New app:
// 1) Create module
@@ -15,4 +18,8 @@ public interface App {
String getStartPath();
int getIndex();
default Collection<Widget> getWidgets() {
return Collections.EMPTY_LIST;
}
}