/**
interface Hello {
void hello();
};
*/
abstract public class _sk_Hello extends org.omg.CORBA.portable.Skeleton implements Hello {
protected _sk_Hello(java.lang.String name) {
super(name);
}
protected _sk_Hello() {
super();
}
public java.lang.String[] _ids() {
return __ids;
}
private static java.lang.String[] __ids = {
"IDL:Hello:1.0"
};
public org.omg.CORBA.portable.MethodPointer[] _methods() {
org.omg.CORBA.portable.MethodPointer[] methods = {
new org.omg.CORBA.portable.MethodPointer("hello", 0, 0),
};
return methods;
}
public boolean _execute(org.omg.CORBA.portable.MethodPointer method, org.omg.CORBA.portable.InputStream input, org.omg.CORBA.portable.OutputStream output) {
switch(method.interface_id) {
case 0: {
return _sk_Hello._execute(this, method.method_id, input, output);
}
}
throw new org.omg.CORBA.MARSHAL();
}
public static boolean _execute(Hello _self, int _method_id, org.omg.CORBA.portable.InputStream _input, org.omg.CORBA.portable.OutputStream _output) {
switch(_method_id) {
case 0: {
_self.hello();
return false;
}
}
throw new org.omg.CORBA.MARSHAL();
}
}