home *** CD-ROM | disk | FTP | other *** search
Wrap
Java Source | 1998-05-08 | 3.1 KB | 78 lines
/* * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved. * * This SOURCE CODE FILE, which has been provided by Borland as part * of a Borland product for use ONLY by licensed users of the product, * includes CONFIDENTIAL and PROPRIETARY information of Borland. * * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH * THE PRODUCT. * * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE * CODE FILE. */ package borland.reference.creditapproval.CORBAInterface; /** <p> <ul> <li> <b>Java Class</b> borland.reference.creditapproval.CORBAInterface._ClientCallbackImplBase <li> <b>Source File</b> borland/reference/creditapproval/CORBAInterface/_ClientCallbackImplBase.java <li> <b>IDL Source File</b> C:/JBuilder/samples/borland/reference/creditapproval/CreditApproval.idl <li> <b>IDL Absolute Name</b> ::borland::reference::creditapproval::CORBAInterface::ClientCallback <li> <b>Repository Identifier</b> IDL:borland/reference/creditapproval/CORBAInterface/ClientCallback:1.0 </ul> <b>IDL definition:</b> <pre> interface ClientCallback { void updateStatusText( in string newStatus ); }; </pre> </p> */ abstract public class _ClientCallbackImplBase extends org.omg.CORBA.portable.Skeleton implements borland.reference.creditapproval.CORBAInterface.ClientCallback { protected _ClientCallbackImplBase(java.lang.String name) { super(name); } protected _ClientCallbackImplBase() { } public java.lang.String[] _ids() { return __ids; } private static java.lang.String[] __ids = { "IDL:borland/reference/creditapproval/CORBAInterface/ClientCallback:1.0" }; public org.omg.CORBA.portable.MethodPointer[] _methods() { org.omg.CORBA.portable.MethodPointer[] methods = { new org.omg.CORBA.portable.MethodPointer("updateStatusText", 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 borland.reference.creditapproval.CORBAInterface._ClientCallbackImplBase._execute(this, method.method_id, input, output); } } throw new org.omg.CORBA.MARSHAL(); } public static boolean _execute(borland.reference.creditapproval.CORBAInterface.ClientCallback _self, int _method_id, org.omg.CORBA.portable.InputStream _input, org.omg.CORBA.portable.OutputStream _output) { switch(_method_id) { case 0: { java.lang.String newStatus; newStatus = _input.read_string(); _self.updateStatusText(newStatus); return false; } } throw new org.omg.CORBA.MARSHAL(); } }