1 23 24 package org.objectweb.fractal.gui.admin.model; 25 26 import org.objectweb.fractal.gui.model.Component; 27 28 public interface AdminModel { 29 30 org.objectweb.fractal.api.Component getInstance (Component model); 31 32 org.objectweb.fractal.api.Component createInstance ( 33 Component model, 34 org.objectweb.fractal.api.Component bootstrapComponent) throws Exception ; 35 36 void deleteInstance (Component model) throws Exception ; 37 38 boolean isStarted (Component model); 39 40 void start (Component model) throws Exception ; 41 42 void stop (Component model) throws Exception ; 43 } 44 | Popular Tags |