1 5 6 package org.omg.CORBA; 7 8 import org.omg.CORBA.portable.*; 9 10 public abstract class LocalObject implements org.omg.CORBA.Object 11 { 12 public LocalObject () {} 13 14 public boolean _is_equivalent (org.omg.CORBA.Object that) 15 { 16 return equals (that); 17 } 18 19 public boolean _non_existent () 20 { 21 return false; 22 } 23 24 public int _hash (int maximum) 25 { 26 return hashCode (); 27 } 28 29 public boolean _is_a (String Identifier) 30 { 31 throw new org.omg.CORBA.NO_IMPLEMENT (); 32 } 33 34 public org.omg.CORBA.Object _duplicate () 35 { 36 throw new org.omg.CORBA.NO_IMPLEMENT (); 37 } 38 39 public void _release () 40 { 41 throw new org.omg.CORBA.NO_IMPLEMENT (); 42 } 43 44 public Request _request (String operation) 45 { 46 throw new org.omg.CORBA.NO_IMPLEMENT (); 47 } 48 49 public Request _create_request 50 (Context ctx, String operation, NVList arg_list, NamedValue result) 51 { 52 throw new org.omg.CORBA.NO_IMPLEMENT (); 53 } 54 55 public Request _create_request 56 ( 57 Context ctx, 58 String operation, 59 NVList arg_list, 60 NamedValue result, 61 ExceptionList exceptions, 62 ContextList contexts 63 ) 64 { 65 throw new org.omg.CORBA.NO_IMPLEMENT (); 66 } 67 68 71 public org.omg.CORBA.InterfaceDef _get_interface () 72 { 73 throw new org.omg.CORBA.NO_IMPLEMENT (); 74 } 75 76 public org.omg.CORBA.Object _get_interface_def () 77 { 78 throw new org.omg.CORBA.NO_IMPLEMENT (); 79 } 80 81 public org.omg.CORBA.ORB _orb () 82 { 83 throw new org.omg.CORBA.NO_IMPLEMENT (); 84 } 85 86 public org.omg.CORBA.Policy _get_policy (int policy_type) 87 { 88 throw new org.omg.CORBA.NO_IMPLEMENT (); 89 } 90 91 public org.omg.CORBA.DomainManager [] _get_domain_managers () 92 { 93 throw new org.omg.CORBA.NO_IMPLEMENT (); 94 } 95 96 public org.omg.CORBA.Object _set_policy_override 97 (org.omg.CORBA.Policy [] policies, org.omg.CORBA.SetOverrideType set_add) 98 { 99 throw new org.omg.CORBA.NO_IMPLEMENT (); 100 } 101 102 public boolean _is_local () 103 { 104 throw new org.omg.CORBA.NO_IMPLEMENT (); 105 } 106 107 public org.omg.CORBA.portable.ServantObject _servant_preinvoke 108 (String operation, Class expectedType) 109 { 110 throw new org.omg.CORBA.NO_IMPLEMENT (); 111 } 112 113 public void _servant_postinvoke (org.omg.CORBA.portable.ServantObject servant) 114 { 115 throw new org.omg.CORBA.NO_IMPLEMENT (); 116 } 117 118 public org.omg.CORBA.portable.OutputStream _request 119 (String operation, boolean responseExpected) 120 { 121 throw new org.omg.CORBA.NO_IMPLEMENT (); 122 } 123 124 public org.omg.CORBA.portable.InputStream _invoke 125 (org.omg.CORBA.portable.OutputStream output) 126 throws 127 org.omg.CORBA.portable.ApplicationException , 128 org.omg.CORBA.portable.RemarshalException 129 { 130 throw new org.omg.CORBA.NO_IMPLEMENT (); 131 } 132 133 public void _releaseReply (org.omg.CORBA.portable.InputStream input) 134 { 135 throw new org.omg.CORBA.NO_IMPLEMENT (); 136 } 137 138 public boolean validate_connection () 139 { 140 throw new org.omg.CORBA.NO_IMPLEMENT (); 141 } 142 } 143 | Popular Tags |