blob: 470ef2bf4a13bed4e816073f7405529e2d3eda71 (
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 __java_rmi_registry_Registry__
#define __java_rmi_registry_Registry__
#pragma interface
#include <java/lang/Object.h>
#include <gcj/array.h>
extern "Java"
{
namespace java
{
namespace rmi
{
class Remote;
namespace registry
{
class Registry;
}
}
}
}
class java::rmi::registry::Registry : public ::java::lang::Object
{
public:
virtual ::java::rmi::Remote * lookup(::java::lang::String *) = 0;
virtual void bind(::java::lang::String *, ::java::rmi::Remote *) = 0;
virtual void unbind(::java::lang::String *) = 0;
virtual void rebind(::java::lang::String *, ::java::rmi::Remote *) = 0;
virtual JArray< ::java::lang::String * > * list() = 0;
static const jint REGISTRY_PORT = 1099;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __java_rmi_registry_Registry__
|