< prev index next >

jdk/src/jdk.jline/share/classes/jdk/internal/jline/console/Operation.java

Print this page


   1 /*
   2  * Copyright (c) 2002-2012, the original author or authors.
   3  *
   4  * This software is distributable under the BSD license. See the terms of the
   5  * BSD license in the documentation provided with this software.
   6  *
   7  * http://www.opensource.org/licenses/bsd-license.php
   8  */
   9 package jline.console;
  10 
  11 /**
  12  * List of all operations.
  13  *
  14  * @author <a href="mailto:gnodet@gmail.com">Guillaume Nodet</a>
  15  * @since 2.6
  16  */
  17 public enum Operation {
  18 
  19     ABORT,
  20     ACCEPT_LINE,
  21     ARROW_KEY_PREFIX,
  22     BACKWARD_BYTE,
  23     BACKWARD_CHAR,
  24     BACKWARD_DELETE_CHAR,
  25     BACKWARD_KILL_LINE,
  26     BACKWARD_KILL_WORD,
  27     BACKWARD_WORD,
  28     BEGINNING_OF_HISTORY,
  29     BEGINNING_OF_LINE,


   1 /*
   2  * Copyright (c) 2002-2012, the original author or authors.
   3  *
   4  * This software is distributable under the BSD license. See the terms of the
   5  * BSD license in the documentation provided with this software.
   6  *
   7  * http://www.opensource.org/licenses/bsd-license.php
   8  */
   9 package jdk.internal.jline.console;
  10 
  11 /**
  12  * List of all operations.
  13  *
  14  * @author <a href="mailto:gnodet@gmail.com">Guillaume Nodet</a>
  15  * @since 2.6
  16  */
  17 public enum Operation {
  18 
  19     ABORT,
  20     ACCEPT_LINE,
  21     ARROW_KEY_PREFIX,
  22     BACKWARD_BYTE,
  23     BACKWARD_CHAR,
  24     BACKWARD_DELETE_CHAR,
  25     BACKWARD_KILL_LINE,
  26     BACKWARD_KILL_WORD,
  27     BACKWARD_WORD,
  28     BEGINNING_OF_HISTORY,
  29     BEGINNING_OF_LINE,


< prev index next >