Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/dll/europa/corba/EuropaAI/_EuropaStub.java
1074 views
1
/*
2
* File: ./EuropaAI/_EuropaStub.java
3
* From: europa.idl
4
* Date: Thu Dec 23 02:08:42 1999
5
* By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18
6
*/
7
8
package EuropaAI;
9
public class _EuropaStub
10
extends org.omg.CORBA.portable.ObjectImpl
11
implements EuropaAI.Europa {
12
13
public _EuropaStub(org.omg.CORBA.portable.Delegate d) {
14
super();
15
_set_delegate(d);
16
}
17
18
private static final String _type_ids[] = {
19
"IDL:EuropaAI/Europa:1.0"
20
};
21
22
public String[] _ids() { return (String[]) _type_ids.clone(); }
23
24
// IDL operations
25
// Implementation of ::EuropaAI::Europa::inputChat
26
public void inputChat(String text)
27
{
28
org.omg.CORBA.Request r = _request("inputChat");
29
org.omg.CORBA.Any _text = r.add_in_arg();
30
_text.insert_string(text);
31
r.invoke();
32
}
33
34
};
35
36