diff options
Diffstat (limited to 'src/cppcheckplus/shortcut/MyShortcutItem.java')
-rw-r--r-- | src/cppcheckplus/shortcut/MyShortcutItem.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/cppcheckplus/shortcut/MyShortcutItem.java b/src/cppcheckplus/shortcut/MyShortcutItem.java new file mode 100644 index 0000000..7461690 --- /dev/null +++ b/src/cppcheckplus/shortcut/MyShortcutItem.java | |||
@@ -0,0 +1,20 @@ | |||
1 | |||
2 | package cppcheckplus.shortcut; | ||
3 | |||
4 | import cppcheckplus.outlookpanel.MyOutlookPanelListItem; | ||
5 | |||
6 | public class MyShortcutItem extends MyOutlookPanelListItem | ||
7 | { | ||
8 | private boolean isGroup; | ||
9 | |||
10 | |||
11 | public void setGroup(boolean isGroup) | ||
12 | { | ||
13 | this.isGroup = isGroup; | ||
14 | } | ||
15 | |||
16 | public boolean isGroup() | ||
17 | { | ||
18 | return isGroup; | ||
19 | } | ||
20 | } | ||