Package com.intellij.openapi.actionSystem

Examples of com.intellij.openapi.actionSystem.MouseShortcut


      if (acceleratorText.length() > 0) {
        s += ", " + acceleratorText;
      }
    }
    else if (shortcut instanceof MouseShortcut) {
      MouseShortcut mouseShortcut = (MouseShortcut)shortcut;
      s = getMouseShortcutText(mouseShortcut.getButton(), mouseShortcut.getModifiers(), mouseShortcut.getClickCount());
    }
    else {
      throw new IllegalArgumentException("unknown shortcut class: " + shortcut);
    }
    return s;
View Full Code Here


      }
      else {
        throw new InvalidDataException("unknown token: " + token);
      }
    }
    return new MouseShortcut(button, modifiers, clickCount);
  }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.actionSystem.MouseShortcut

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.