blob: e0ec4e946360e5c909ce0af6e6f0f0b45715df7a (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __javax_swing_ComponentInputMap__
#define __javax_swing_ComponentInputMap__
#pragma interface
#include <javax/swing/InputMap.h>
extern "Java"
{
namespace javax
{
namespace swing
{
class ComponentInputMap;
class InputMap;
class JComponent;
class KeyStroke;
}
}
}
class javax::swing::ComponentInputMap : public ::javax::swing::InputMap
{
public:
ComponentInputMap(::javax::swing::JComponent *);
virtual void put(::javax::swing::KeyStroke *, ::java::lang::Object *);
virtual void clear();
virtual void remove(::javax::swing::KeyStroke *);
virtual void setParent(::javax::swing::InputMap *);
virtual ::javax::swing::JComponent * getComponent();
private:
::javax::swing::JComponent * __attribute__((aligned(__alignof__( ::javax::swing::InputMap)))) component;
public:
static ::java::lang::Class class$;
};
#endif // __javax_swing_ComponentInputMap__
|