source: trunk/src/org/expeditee/gui/indirect/keyboard/KeyboardInfo.java@ 949

Last change on this file since 949 was 949, checked in by bln4, 9 years ago
  • Property svn:mime-type set to text/plain
File size: 936 bytes
Line 
1package org.expeditee.gui.indirect.keyboard;
2
3import java.util.Collection;
4
5import org.expeditee.gui.FunctionKey;
6import org.expeditee.items.Item;
7
8public class KeyboardInfo {
9 public FunctionKey key;
10 public int repeat;
11 public boolean isShiftDown;
12 public boolean isControlDown;
13 public Collection<Item> enclosed;
14 public Item firstConnected;
15 public Collection<Item> connected;
16 public Collection<Item> lineEnds;
17
18 public KeyboardInfo(final FunctionKey key, final int repeat,
19 final boolean isShiftDown, final boolean isControlDown, final Collection<Item> enclosed,
20 final Item firstConnected, Collection<Item> connected, Collection<Item> lineEnds) {
21 this.key = key;
22 this.repeat = repeat;
23 this.isShiftDown = isShiftDown;
24 this.isControlDown = isControlDown;
25 this.enclosed = enclosed;
26 this.firstConnected = firstConnected;
27 this.connected = connected;
28 this.lineEnds = lineEnds;
29 }
30
31}
Note: See TracBrowser for help on using the repository browser.