00001 package Sct_SctApi;
00002
00003
00012
00013 public class _ProbeChecksStub extends org.omg.CORBA.portable.ObjectImpl implements Sct_SctApi.ProbeChecks
00014 {
00015
00016 public boolean checkAllModulesProbe (String chars) throws Sct_SctApi.SctApiException
00017 {
00018 org.omg.CORBA.portable.InputStream $in = null;
00019 try {
00020 org.omg.CORBA.portable.OutputStream $out = _request ("checkAllModulesProbe", true);
00021 $out.write_string (chars);
00022 $in = _invoke ($out);
00023 boolean $result = $in.read_boolean ();
00024 return $result;
00025 } catch (org.omg.CORBA.portable.ApplicationException $ex) {
00026 $in = $ex.getInputStream ();
00027 String _id = $ex.getId ();
00028 if (_id.equals ("IDL:Sct_SctApi/SctApiException:1.0"))
00029 throw Sct_SctApi.SctApiExceptionHelper.read ($in);
00030 else
00031 throw new org.omg.CORBA.MARSHAL (_id);
00032 } catch (org.omg.CORBA.portable.RemarshalException $rm) {
00033 return checkAllModulesProbe (chars );
00034 } finally {
00035 _releaseReply ($in);
00036 }
00037 }
00038
00039
00040 private static String[] __ids = {
00041 "IDL:Sct_SctApi/ProbeChecks:1.0"};
00042
00043 public String[] _ids ()
00044 {
00045 return (String[])__ids.clone ();
00046 }
00047
00048 private void readObject (java.io.ObjectInputStream s) throws java.io.IOException
00049 {
00050 String str = s.readUTF ();
00051 String[] args = null;
00052 java.util.Properties props = null;
00053 org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init (args, props).string_to_object (str);
00054 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
00055 _set_delegate (delegate);
00056 }
00057
00058 private void writeObject (java.io.ObjectOutputStream s) throws java.io.IOException
00059 {
00060 String[] args = null;
00061 java.util.Properties props = null;
00062 String str = org.omg.CORBA.ORB.init (args, props).object_to_string (this);
00063 s.writeUTF (str);
00064 }
00065 }