Class CtrlAltAndCharacterPattern

  • All Implemented Interfaces:
    CharacterPattern

    public class CtrlAltAndCharacterPattern
    extends java.lang.Object
    implements CharacterPattern
    Character pattern that matches characters pressed while ALT and CTRL keys are held down
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      CharacterPattern.Matching match​(java.util.List<java.lang.Character> seq)
      Given a list of characters, determine whether it exactly matches any known KeyStroke, and whether a longer sequence can possibly match.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CtrlAltAndCharacterPattern

        public CtrlAltAndCharacterPattern()
    • Method Detail

      • match

        public CharacterPattern.Matching match​(java.util.List<java.lang.Character> seq)
        Description copied from interface: CharacterPattern
        Given a list of characters, determine whether it exactly matches any known KeyStroke, and whether a longer sequence can possibly match.
        Specified by:
        match in interface CharacterPattern
        Parameters:
        seq - of characters to check
        Returns:
        see Matching