_stringregistrystub.java

来自「corba入门级程序」· Java 代码 · 共 150 行

JAVA
150
字号
package Registry;


/**
* Registry/_StringRegistryStub.java
* Generated by the IDL-to-Java compiler (portable), version "3.0"
* from registry.idl
* Sunday, October 1, 2000 7:10:58 PM PDT
*/

public class _StringRegistryStub extends org.omg.CORBA.portable.ObjectImpl implements Registry.StringRegistry
{
  // Constructors
  // NOTE:  If the default constructor is used, the
  //        object is useless until _set_delegate (...)
  //        is called.
  public _StringRegistryStub ()
  {
    super ();
  }

  public _StringRegistryStub (org.omg.CORBA.portable.Delegate delegate)
  {
    super ();
    _set_delegate (delegate);
  }

  public String getValue (String key)
  {
    org.omg.CORBA.portable.InputStream _in = null;
    try {
       org.omg.CORBA.portable.OutputStream _out = _request ("getValue", true);
       _out.write_string (key);
       _in = _invoke (_out);
       String __result = _in.read_string ();
       return __result;
    } catch (org.omg.CORBA.portable.ApplicationException _ex) {
       _in = _ex.getInputStream ();
       String _id = _ex.getId ();
       throw new org.omg.CORBA.MARSHAL (_id);
    } catch (org.omg.CORBA.portable.RemarshalException _rm) {
       return getValue (key);
    } finally {
        _releaseReply (_in);
    }
  } // getValue

  public void setValue (String key, String value)
  {
    org.omg.CORBA.portable.InputStream _in = null;
    try {
       org.omg.CORBA.portable.OutputStream _out = _request ("setValue", true);
       _out.write_string (key);
       _out.write_string (value);
       _in = _invoke (_out);
    } catch (org.omg.CORBA.portable.ApplicationException _ex) {
       _in = _ex.getInputStream ();
       String _id = _ex.getId ();
       throw new org.omg.CORBA.MARSHAL (_id);
    } catch (org.omg.CORBA.portable.RemarshalException _rm) {
       setValue (key, value);
    } finally {
        _releaseReply (_in);
    }
  } // setValue

  public void removeValueForKey (String key)
  {
    org.omg.CORBA.portable.InputStream _in = null;
    try {
       org.omg.CORBA.portable.OutputStream _out = _request ("removeValueForKey", true);
       _out.write_string (key);
       _in = _invoke (_out);
    } catch (org.omg.CORBA.portable.ApplicationException _ex) {
       _in = _ex.getInputStream ();
       String _id = _ex.getId ();
       throw new org.omg.CORBA.MARSHAL (_id);
    } catch (org.omg.CORBA.portable.RemarshalException _rm) {
       removeValueForKey (key);
    } finally {
        _releaseReply (_in);
    }
  } // removeValueForKey

  public void registerWatcher (Registry.StringRegistryWatcher watcher)
  {
    org.omg.CORBA.portable.InputStream _in = null;
    try {
       org.omg.CORBA.portable.OutputStream _out = _request ("registerWatcher", true);
       Registry.StringRegistryWatcherHelper.write (_out, watcher);
       _in = _invoke (_out);
    } catch (org.omg.CORBA.portable.ApplicationException _ex) {
       _in = _ex.getInputStream ();
       String _id = _ex.getId ();
       throw new org.omg.CORBA.MARSHAL (_id);
    } catch (org.omg.CORBA.portable.RemarshalException _rm) {
       registerWatcher (watcher);
    } finally {
        _releaseReply (_in);
    }
  } // registerWatcher

  public void unregisterWatcher (Registry.StringRegistryWatcher watcher)
  {
    org.omg.CORBA.portable.InputStream _in = null;
    try {
       org.omg.CORBA.portable.OutputStream _out = _request ("unregisterWatcher", true);
       Registry.StringRegistryWatcherHelper.write (_out, watcher);
       _in = _invoke (_out);
    } catch (org.omg.CORBA.portable.ApplicationException _ex) {
       _in = _ex.getInputStream ();
       String _id = _ex.getId ();
       throw new org.omg.CORBA.MARSHAL (_id);
    } catch (org.omg.CORBA.portable.RemarshalException _rm) {
       unregisterWatcher (watcher);
    } finally {
        _releaseReply (_in);
    }
  } // unregisterWatcher

  // Type-specific CORBA::Object operations
  private static String[] __ids = {
    "IDL:Registry/StringRegistry:1.0"};

  public String[] _ids ()
  {
    return (String[])__ids.clone ();
  }

  private void readObject (java.io.ObjectInputStream s)
  {
     try 
     {
       String str = s.readUTF ();
       org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init ().string_to_object (str);
       org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
       _set_delegate (delegate);
     } catch (java.io.IOException e) {}
  }

  private void writeObject (java.io.ObjectOutputStream s)
  {
     try 
     {
       String str = org.omg.CORBA.ORB.init ().object_to_string (this);
       s.writeUTF (str);
     } catch (java.io.IOException e) {}
  }
} // class _StringRegistryStub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?