blob: 2852acc0b42bb568ac1d653e343b178aa1f186c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.plugin.desktoputil;
import javax.swing.*;
/**
* A wrapper around AbstractAction, so we can differ our Actions.
* Used when adding actions to the action map,
* and actions will be triggered by keystrokes from the inputMap of the RootPane.
*
* @author Damian Minkov
*/
public abstract class UIAction
extends AbstractAction
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
}
|