Package com.sun.star.lib.uno.environments.remote

Examples of com.sun.star.lib.uno.environments.remote.IUnmarshal


    for(int i = 0; i < dataTypes.length; ++ i) {
      Object op1 = data[i];
      iMarshal.writeObject(dataTypes[i], data[i]);

      IUnmarshal iUnmarshal = iProtocol.createUnmarshal(iMarshal.reset());

      Object op2 = iUnmarshal.readObject(dataTypes[i]);

      if(op1 instanceof Any)
        op1 = ((Any)op1).getObject();

      boolean tmp_passed = compareObjects(op1, op2);
View Full Code Here

TOP

Related Classes of com.sun.star.lib.uno.environments.remote.IUnmarshal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.