Example #1
0
 public void start(Object component) {
   lifecycle.start(componentInstance);
   started = true;
 }
Example #2
0
 public boolean isLazy(ComponentAdapter<?> adapter) {
   return lifecycle.isLazy(adapter);
 }
Example #3
0
 public void dispose(Object component) {
   lifecycle.dispose(componentInstance);
 }
Example #4
0
 public boolean hasLifecycle(Class<?> type) {
   return lifecycle.hasLifecycle(type);
 }
Example #5
0
 public void stop(Object component) {
   lifecycle.stop(componentInstance);
   started = false;
 }