use of com.cosylab.acs.maci.manager.ManagerImpl in project ACS by ACS-Community.
the class ComponentInfoCommandComponentRemove method execute.
/**
* @see Command#execute(PrevalentSystem)
*/
public Serializable execute(PrevalentSystem system) throws Exception {
ComponentInfo componentInfo = (ComponentInfo) ((ManagerImpl) system).getComponents().get(hid);
componentInfo.getComponents().remove(handle);
return null;
}
Aggregations