OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / classpath / jdwp / event / filters / StepFilter.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __gnu_classpath_jdwp_event_filters_StepFilter__
5 #define __gnu_classpath_jdwp_event_filters_StepFilter__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 extern "Java"
11 {
12   namespace gnu
13   {
14     namespace classpath
15     {
16       namespace jdwp
17       {
18         namespace event
19         {
20             class Event;
21           namespace filters
22           {
23               class StepFilter;
24           }
25         }
26         namespace id
27         {
28             class ThreadId;
29         }
30       }
31     }
32   }
33 }
34
35 class gnu::classpath::jdwp::event::filters::StepFilter : public ::java::lang::Object
36 {
37
38 public:
39   StepFilter(::gnu::classpath::jdwp::id::ThreadId *, jint, jint);
40   virtual ::gnu::classpath::jdwp::id::ThreadId * getThread();
41   virtual jint getSize();
42   virtual jint getDepth();
43   virtual jboolean matches(::gnu::classpath::jdwp::event::Event *);
44 private:
45   ::gnu::classpath::jdwp::id::ThreadId * __attribute__((aligned(__alignof__( ::java::lang::Object)))) _tid;
46   jint _size;
47   jint _depth;
48 public:
49   static ::java::lang::Class class$;
50 };
51
52 #endif // __gnu_classpath_jdwp_event_filters_StepFilter__