/** * Stops this manager. The mappings are not saved automatically when the manager stops. You have * to call {@link #store()} from within your application if needed. * * @throws ManagerException not actually thrown by this implementation * @see de.xirp.managers.AbstractManager#stop() */ @Override protected void stop() throws ManagerException { super.stop(); }
/** * Starts up this manager and loads the bindings for the commands. * * @throws ManagerException not actually thrown by this implementation */ @Override protected void start() throws ManagerException { super.start(); reload(); }