git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
35 lines
852 B
Java
35 lines
852 B
Java
/*
|
|
* File: ./EuropaAI/_EuropaStub.java
|
|
* From: europa.idl
|
|
* Date: Thu Dec 23 02:08:42 1999
|
|
* By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18
|
|
*/
|
|
|
|
package EuropaAI;
|
|
public class _EuropaStub
|
|
extends org.omg.CORBA.portable.ObjectImpl
|
|
implements EuropaAI.Europa {
|
|
|
|
public _EuropaStub(org.omg.CORBA.portable.Delegate d) {
|
|
super();
|
|
_set_delegate(d);
|
|
}
|
|
|
|
private static final String _type_ids[] = {
|
|
"IDL:EuropaAI/Europa:1.0"
|
|
};
|
|
|
|
public String[] _ids() { return (String[]) _type_ids.clone(); }
|
|
|
|
// IDL operations
|
|
// Implementation of ::EuropaAI::Europa::inputChat
|
|
public void inputChat(String text)
|
|
{
|
|
org.omg.CORBA.Request r = _request("inputChat");
|
|
org.omg.CORBA.Any _text = r.add_in_arg();
|
|
_text.insert_string(text);
|
|
r.invoke();
|
|
}
|
|
|
|
};
|