source: trunk/src/org/expeditee/gio/gesture/data/ClickGestureData.java@ 1097

Last change on this file since 1097 was 1097, checked in by davidb, 6 years ago

Newly structured files from Corey's work on logic/graphics separation

File size: 489 bytes
Line 
1package org.expeditee.gio.gesture.data;
2
3public class ClickGestureData extends ItemSpecificGestureData {
4
5 private boolean _longClick;
6
7 public ClickGestureData(boolean longClick)
8 {
9 super();
10 _longClick = longClick;
11 }
12
13 public ClickGestureData(ClickGestureData other)
14 {
15 super(other);
16 if (other != null) _longClick = other._longClick;
17 }
18
19 public boolean getLongClick()
20 {
21 return _longClick;
22 }
23
24 public ClickGestureData clone()
25 {
26 return new ClickGestureData(this);
27 }
28}
Note: See TracBrowser for help on using the repository browser.