source: trunk/src/org/apollo/gio/gesture/data/TrackAdjustmentGestureData.java@ 1532

Last change on this file since 1532 was 1532, checked in by bnemhaus, 4 years ago

New feature: when creating a frameset, if the item being used is linked and you hold shift, it will use the items on the linked frame to populate the zero frame of the new frameset

File size: 368 bytes
Line 
1package org.apollo.gio.gesture.data;
2
3import org.expeditee.gio.gesture.data.ItemSpecificGestureData;
4
5public class TrackAdjustmentGestureData extends ItemSpecificGestureData
6{
7 private long _adjustment;
8
9 public TrackAdjustmentGestureData(long adjustment)
10 {
11 super(false);
12 _adjustment = adjustment;
13 }
14
15 public long getAdjustment()
16 {
17 return _adjustment;
18 }
19}
Note: See TracBrowser for help on using the repository browser.