blob: 75df22500cbf1fc72aea97c1bb15e0793d2c3608 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_java_beans_decoder_ElementHandler__
#define __gnu_java_beans_decoder_ElementHandler__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace gnu
{
namespace java
{
namespace beans
{
namespace decoder
{
class Context;
class ElementHandler;
}
}
}
}
namespace java
{
namespace beans
{
class ExceptionListener;
}
}
namespace org
{
namespace xml
{
namespace sax
{
class Attributes;
}
}
}
}
class gnu::java::beans::decoder::ElementHandler : public ::java::lang::Object
{
public:
virtual void start(::org::xml::sax::Attributes *, ::java::beans::ExceptionListener *) = 0;
virtual void end(::java::beans::ExceptionListener *) = 0;
virtual void characters(JArray< jchar > *, jint, jint) = 0;
virtual jboolean isSubelementAllowed(::java::lang::String *) = 0;
virtual ::java::lang::Class * instantiateClass(::java::lang::String *) = 0;
virtual void notifyStatement(::java::beans::ExceptionListener *) = 0;
virtual jboolean hasFailed() = 0;
virtual ::gnu::java::beans::decoder::Context * getContext() = 0;
virtual void notifyContextFailed() = 0;
virtual void putObject(::java::lang::String *, ::java::lang::Object *) = 0;
virtual ::java::lang::Object * getObject(::java::lang::String *) = 0;
virtual ::gnu::java::beans::decoder::ElementHandler * getParent() = 0;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __gnu_java_beans_decoder_ElementHandler__
|