Package org.freeplane.plugin.workspace.features

Examples of org.freeplane.plugin.workspace.features.ModeControlAlreadyRegisteredException


 
  public static void registerWorkspaceModeExtension(Class<? extends ModeController> modeController, Class<? extends AWorkspaceModeExtension> modeWorkspaceCtrl) throws ModeControlAlreadyRegisteredException {
    synchronized (modeWorkspaceCtrlMap) {
      //WORKSPACE - INFO: allow overwrite?
      if(modeWorkspaceCtrlMap.containsKey(modeController)) {
        throw new ModeControlAlreadyRegisteredException(modeController);
      }
      modeWorkspaceCtrlMap.put(modeController, modeWorkspaceCtrl);
    }
  }
View Full Code Here

TOP

Related Classes of org.freeplane.plugin.workspace.features.ModeControlAlreadyRegisteredException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.