You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MouseEventType.java 210B

12345678910111213
  1. package com.dmdirc.addons.ui_swing.textpane;
  2. /**
  3. * Selection event types.
  4. */
  5. enum MouseEventType {
  6. /** Mouse clicked. */
  7. CLICK, /** Mouse dragged. */
  8. DRAG, /** Mouse released. */
  9. RELEASE
  10. }