public static final void installComponent(FileSystemSandBoxComponent component_to_install) {
   componentInstaller.installComponent(component_to_install);
 }
 public static final FileSystemSandBoxComponent component() {
   return componentInstaller.getComponent();
 }
 public static final FileSystemSandBoxComponent invoke() {
   return componentInstaller.invokeComponent();
 }
Example #4
0
 public static final void installComponent(UIStarterComponent component_to_install) {
   componentInstaller.installComponent(component_to_install);
 }
Example #5
0
 public static final UIStarterComponent component() {
   return componentInstaller.getComponent();
 }
Example #6
0
 public static final UIStarterComponent invoke() {
   return componentInstaller.invokeComponent();
 }