亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? orb.java

?? linux下編程用 編譯軟件
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
   *   * @return the created typecode.   */  public abstract TypeCode create_interface_tc(String id, String name);  /**   * Create an instance of a new {@link NVList}.   *   * @param count the initial size of the list. If more elements are added,   * the list automatically expands.   *   * @return the created list.   */  public abstract NVList create_list(int count);  /**   * Create a new named value.   *   * @param name the name of the named value   * @param any the content of the named value.   * @param flags the flags of the named value   *   * @return the named value.   */  public abstract NamedValue create_named_value(String name, Any any, int flags);  /**   * Send multiple prepared requests one way, do not caring about the answer.   * The messages, containing requests, will be marked, indicating that   * the sender is not expecting to get a reply.   *   * @param requests the prepared array of requests.   *   * @see Request#send_oneway()   */  public abstract void send_multiple_requests_oneway(Request[] requests);  /**   * Send multiple prepared requests expecting to get a reply. All requests   * are send in parallel, each in its own separate thread. When the   * reply arrives, it is stored in the agreed fields of the corresponing   * request data structure. If this method is called repeatedly,   * the new requests are added to the set of the currently sent requests,   * but the old set is not discarded.   *   * @param requests the prepared array of requests.   *   * @see #poll_next_response()   * @see #get_next_response()   * @see Request#send_deferred()   */  public abstract void send_multiple_requests_deferred(Request[] requests);  /**   * Find if any of the requests that have been previously sent with   * {@link #send_multiple_requests_deferred}, have a response yet.   *   * @return true if there is at least one response to the previously   * sent request, false otherwise.   */  public abstract boolean poll_next_response();  /**   * Get the next instance with a response being received. If all currently   * sent responses not yet processed, this method pauses till at least one of   * them is complete. If there are no requests currently sent, the method   * pauses till some request is submitted and the response is received.   * This strategy is identical to the one accepted by Suns 1.4 ORB   * implementation.   *   * @return the previously sent request that now contains the received   * response.   *   * @throws WrongTransaction If the method was called from the transaction   * scope different than the one, used to send the request. The exception   * can be raised only if the request is implicitly associated with some   * particular transaction.   */  public abstract Request get_next_response()                                     throws WrongTransaction;  /**   * Create a new CDR output stream, where the parameter values can be written   * during the method invocation.   *   * @return a stream to write values into.   */  public abstract org.omg.CORBA.portable.OutputStream create_output_stream();  /**   * This should create the list, initialised with the argument descriptions   * for the given operation definition (CORBA <code>OperationDef</code>).   * The information should be obtained from the interface repository.   * However this method is oficially documented as not implemented at least   * till v1.4 inclusive.   *   * @param operation_definition the operation definition, must be   * CORBA <code>OperationDef</code>.   *   * @return never   *   * @throws NO_IMPLEMENT, always.   */  public NVList create_operation_list(Object operation_definition)  {    throw new NO_IMPLEMENT();  }  /**   * <p>Creates the new policy of the specified type, having the given value.   * This method looks for the policy factory that was previously registered   * during ORB initialization by   * {@link org.omg.PortableInterceptor#ORBInitialiser}.   *   * If the suitable factory is found, this factory creates the requested policy,   * otherwise the PolicyError is thrown.   * </p><p>   * The POA policies should be created by POA, not by this method.   * </p>   * @param type the policy type.   * @param value the policy value, wrapped into Any.   *   * @throws PolicyError if the ORB fails to instantiate the policy object.   *   * @throws NO_IMPLEMENT always (in this class). Overridden in derived classes   * returned by ORB.init(..).   *   * @see org.omg.PortableInterceptor.ORBInitInfoOperations#register_policy_factory   * @see org.omg.PortableInterceptor.PolicyFactoryOperations   */  public Policy create_policy(int type, Any value)                       throws PolicyError  {    throw new NO_IMPLEMENT();  }  /**   * Create typecode, defining the sequence of the elements, having   * the given type.   *   * @param bound the maximal length of the sequence, 0 if not restricted.   *   * @param element_type the sequence element type.   *   * @return the typecode.   */  public abstract TypeCode create_sequence_tc(int bound, TypeCode element_type);  /**   * Create a TypeCode, representing the CORBA <code>string</code>.   *   * @param bound the maximal length of the string, 0 is unlimited.   *   * @return the corresponding string typecode.   */  public abstract TypeCode create_string_tc(int bound);  /**   * Create the typecode, defining the given IDL structure.   *   * The TypeCode object is initialized with the given id, name, and members.   * @param id the Id of this type.   * @param name the name of this type.   * @param members the member list.   *   * @return the typecode.   */  public abstract TypeCode create_struct_tc(String id, String name,                                            StructMember[] members                                           );  /**   * Create the typecode, defining the given IDL union.   *   * The TypeCode object is initialized with the given id, name, discriminator   * and members.   *   * @param id the Id of this type.   * @param name the name of this type.   * @param discriminator the union discriminator.   * @param members the member list.   *   * @return the typecode.   */  public abstract TypeCode create_union_tc(String id, String name,                                           TypeCode discriminator,                                           UnionMember[] members                                          );  /**   * Create a TypeCode, representing the CORBA <code>wstring</code>.   *   * @param bound the maximal length of the string, 0 is unlimited.   *   * @return the corresponding string typecode.   */  public abstract TypeCode create_wstring_tc(int bound);  /**   * Create a typecode for an abstract interface. The abstract interface   * can be either CORBA object or CORBA value type.   *   * @param id the id of the abstract interface.   * @param name the name of the abstract interface.   *   * @return the created typecode.   */  public TypeCode create_abstract_interface_tc(String id, String name)  {    GeneralTypeCode t = new GeneralTypeCode(TCKind.tk_abstract_interface);    t.setName(name);    t.setId(id);    return t;  }  /**   * Create a typecode for a native interface.   *   * @param id the id of the native interface.   * @param name the name of the native interface.   *   * @return the created typecode.   */  public TypeCode create_native_tc(String id, String name)  {    GeneralTypeCode t = new GeneralTypeCode(TCKind.tk_native);    t.setName(name);    t.setId(id);    return t;  }  /**   * Create a typecode, representing a tree-like structure.   * This structure contains a member that is a sequence of the same type,   * as the structure itself. You can imagine as if the folder definition   * contains a variable-length array of the enclosed (nested) folder   * definitions. In this way, it is possible to have a tree like   * structure that can be transferred via CORBA CDR stream.   *   * @deprecated It is easier and clearler to use a combination of   * create_recursive_tc and create_sequence_tc instead.   *   * @param bound the maximal expected number of the nested components   * on each node; 0 if not limited.   *   * @param offset the position of the field in the returned structure   * that contains the sequence of the structures of the same field.   * The members before this field are intialised using parameterless   * StructMember constructor.   *   * @return a typecode, defining a stucture, where a member at the   * <code>offset</code> position defines an array of the identical   * structures.   *   * @see #create_recursive_tc(String)   * @see #create_sequence_tc(int, TypeCode)   */  public TypeCode create_recursive_sequence_tc(int bound, int offset)  {    RecordTypeCode r = new RecordTypeCode(TCKind.tk_struct);    for (int i = 0; i < offset; i++)      r.add(new StructMember());    TypeCode recurs = new PrimitiveTypeCode(TCKind.tk_sequence);    r.add(new StructMember("", recurs, null));    return r;  }  /**   * Create a typecode which serves as a placeholder for typcode, containing   * recursion.   *   * @param id the id of the recursive typecode, for that this typecode   * serves as a placeholder.   */  public TypeCode create_recursive_tc(String id)  {    return new RecursiveTypeCode(id);  }  /**   * Create value box typecode.   */  public TypeCode create_value_box_tc(String id, String name,                                      TypeCode boxed_type                                     )  {    GeneralTypeCode t = new GeneralTypeCode(TCKind.tk_value_box);    t.setName(name);    t.setId(id);    t.setContentType(boxed_type);    return t;  }  /**   * Create IDL value type code.   */  public TypeCode create_value_tc(String id, String name, short type_modifier,                                  TypeCode concrete_base, ValueMember[] members                                 )  {    RecordTypeCode r = new RecordTypeCode(TCKind.tk_value);    r.setId(id);    r.setName(name);    r.setTypeModifier(type_modifier);    r.setConcreteBase_type(concrete_base);    for (int i = 0; i < members.length; i++)      {        r.add(members [ i ]);      }    return r;  }  /**   * This should return the information, related to the current thread.   * The information is needed, for instance, to get the current object   * from the code that serves several objects in parallel threads.   * The {@link Current} is very general interface, with no fields and   * operations defined. This method is not implemented in Suns   * releases at least till v1.5 inclusive. To obtain the   * {@link org.omg.PortableServer.Current}, use   * {@link #resolve_initial_references}, passing "POACurrent".   *   * @deprecated since 1.2, use {@link #resolve_initial_references}.   *   * @return never   *   * @throws NO_IMPLEMENT always.   */  public Current get_current()  {    throw new NO_IMPLEMENT();  }  /**   * This should return the information about the CORBA facilities and   * services, available from this ORB. However this method is oficially   * documented as not implemented at least till v1.5 inclusive.   *   * @param service_type a type of the service being requested. The OMG   * specification currently defines only one value, 1, for security   * related services.   *   * @param service_info a holder, where the returned information should   * be stored.   *   * @return should return true if the service information is available   * from the ORB, but this method never returns.   *   * @throws NO_IMPLEMENT always.   */  public boolean get_service_information(short service_type,                                         ServiceInformationHolder service_info                                        )  {    throw new NO_IMPLEMENT();  }  /**   * Get the default context of this ORB. This is an initial root of all   * contexts.   *   * The default method returns a new context with the empty name and   * no parent context.   *   * @return the default context of this ORB.   *   * @throws NO_IMPLEMENT for the Singleton ORB, returned by   * the parameterless {@link #init()}.   */  public Context get_default_context()  {    return new gnuContext("", null);  }  /**   * Return thg typecode, representing the given primitive object type.   *   * @param tcKind the kind of the primitive typecode.   *   * @return the typecode of the primitve typecode.   */  public abstract TypeCode get_primitive_tc(TCKind tcKind);  /**   * Returns so-called Singleton ORB, a highly restricted version   * that cannot communicate over network. This ORB is provided   * for the potentially malicious applets with heavy security restrictions.   *   * The returned Singleton ORB can only create typecodes,   * {@link Any}, {@link ContextList}, {@link NVList} and   * {@link org.omg.CORBA.portable.OutputStream} that writes to an   * internal buffer.   *   * All other methods throw the {@link NO_IMPLEMENT} exception, additionally   * printing the error message about the potential attempt to violate   * the security rules.   *   * The implementing ORB class, used in this method, is found as described   * in the header.   *   * @return the working derivative of ORB, implementing the methods   * of this abstract class.   */  public static ORB init()  {    String orb_cn = getCumulatedProperty(null, RESTRICTED_ORB);    if (orb_cn == null)      return OrbRestricted.Singleton;    else      return createORB(null, orb_cn);  }  /**   * Creates the working instance of ORB for an applet.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩经典中文字幕一区| 亚洲综合999| 国产精品成人在线观看| 亚洲综合视频在线观看| 91欧美激情一区二区三区成人| 欧美日韩成人在线一区| 精品国产凹凸成av人导航| 国产精品人妖ts系列视频| 日韩专区一卡二卡| 欧美一级黄色片| 亚洲男人的天堂av| 精品一区二区三区在线观看| 91看片淫黄大片一级在线观看| 亚洲日本电影在线| 成人综合婷婷国产精品久久蜜臀 | 国产精品免费aⅴ片在线观看| 国产成人精品亚洲777人妖| 欧美午夜精品理论片a级按摩| 久久香蕉国产线看观看99| 偷拍自拍另类欧美| 在线观看日韩毛片| 国产网站一区二区| 日韩国产欧美在线视频| 色婷婷精品久久二区二区蜜臀av | 欧美一二三区精品| 国产一区福利在线| 国产精品视频你懂的| 成人禁用看黄a在线| 欧美va在线播放| 日韩国产欧美在线播放| 国产色综合久久| 日本精品一区二区三区高清 | 亚洲综合丁香婷婷六月香| 日韩一区二区在线观看视频| 丰满少妇久久久久久久| 2017欧美狠狠色| 色综合久久综合网| 久久国产夜色精品鲁鲁99| 日韩一区二区在线免费观看| 成人免费视频播放| 青青草国产精品亚洲专区无| 欧美一区二区在线视频| 日韩国产欧美一区二区三区| 国产精品网友自拍| 日韩一区二区电影网| 99re热这里只有精品视频| 亚洲欧美激情视频在线观看一区二区三区 | 一区在线中文字幕| 99re热视频这里只精品| 久久精品国产精品亚洲精品| 亚洲免费av高清| 久久精品视频在线看| 欧美另类一区二区三区| 老司机一区二区| 亚洲精品高清在线| 欧美肥妇bbw| 99re成人精品视频| 国产精品一级在线| 亚洲欧美日韩国产综合| 久久久久久黄色| 99精品视频在线观看| 精品一区二区三区视频在线观看 | 一区二区三区在线观看视频| 欧美在线免费观看亚洲| 岛国av在线一区| 国产老肥熟一区二区三区| 蜜臀91精品一区二区三区| 国产亚洲福利社区一区| 91精品国产欧美日韩| 欧美在线影院一区二区| 91美女片黄在线观看| 国产不卡免费视频| 国产精品中文欧美| 国模一区二区三区白浆| 亚洲欧美色图小说| 成人免费在线播放视频| 中文字幕欧美三区| 欧美顶级少妇做爰| 欧美日韩一区 二区 三区 久久精品| 日韩av网站在线观看| 亚洲成人第一页| 欧美极品aⅴ影院| 久久久久久久久久久99999| 久久亚洲捆绑美女| 国产日韩欧美精品综合| 欧美精品丝袜中出| 欧美日韩国产中文| 91精品久久久久久久99蜜桃| av一区二区三区黑人| 理论电影国产精品| 激情综合网天天干| 欧美久久久久久久久久| 欧美日韩一卡二卡| 69堂成人精品免费视频| 日韩视频免费观看高清完整版在线观看| 欧美女孩性生活视频| 日韩一二在线观看| 久久久久久亚洲综合影院红桃| 国产欧美一区视频| 专区另类欧美日韩| 亚洲综合成人在线| 毛片基地黄久久久久久天堂| 国产麻豆视频一区| www.性欧美| 精品视频123区在线观看| 欧美一区二区三区四区在线观看 | 久久国产三级精品| 国产成人av资源| 91麻豆国产自产在线观看| 91国产福利在线| 日韩欧美国产综合| 欧美女孩性生活视频| 精品国产91久久久久久久妲己| 国产欧美一区二区精品忘忧草| 国产精品国产成人国产三级| 亚洲午夜一二三区视频| 一区二区三区在线观看欧美| 日韩黄色片在线观看| 国产精品亚洲视频| 色婷婷综合激情| 日本欧美在线看| 国产精品影视天天线| 91激情五月电影| 久久这里只有精品6| 亚洲另类在线一区| 韩国女主播成人在线观看| 91老司机福利 在线| 欧美成人video| 一区二区三区国产豹纹内裤在线| 日韩成人伦理电影在线观看| 成人aa视频在线观看| 日韩午夜在线影院| 亚洲视频精选在线| 国产乱码精品1区2区3区| 欧美亚洲国产一区二区三区va | 欧美日韩第一区日日骚| 久久免费偷拍视频| 亚洲一卡二卡三卡四卡| 国产福利一区二区三区在线视频| 色综合色综合色综合| 亚洲精品在线观看网站| 亚洲国产一二三| 高清久久久久久| 日韩欧美国产精品一区| 亚洲最大成人综合| 成人sese在线| 久久精品视频免费| 麻豆成人综合网| 欧美人妇做爰xxxⅹ性高电影| 国产精品网站在线| 国产一区视频导航| 日韩一级在线观看| 偷拍日韩校园综合在线| 在线观看视频一区二区| 1024国产精品| 国产福利视频一区二区三区| 日韩女优av电影| 蜜臀va亚洲va欧美va天堂| 制服丝袜亚洲色图| 五月天网站亚洲| 欧美午夜免费电影| 亚洲一区在线观看视频| 91在线视频网址| 亚洲欧洲三级电影| 99国产精品一区| ...av二区三区久久精品| 成人激情动漫在线观看| 国产欧美日韩综合| 成人黄色免费短视频| 亚洲国产精品黑人久久久| 国产白丝网站精品污在线入口| 久久老女人爱爱| 国产成人亚洲综合a∨猫咪| 久久久久成人黄色影片| 国产成人精品三级麻豆| 国产精品全国免费观看高清| 成人免费视频播放| 亚洲色图制服诱惑| 在线中文字幕一区二区| 亚洲成av人**亚洲成av**| 欧美伦理电影网| 美日韩一区二区三区| 日韩欧美一级特黄在线播放| 美脚の诱脚舐め脚责91 | 五月婷婷综合激情| 欧美一区二区三区免费大片| 麻豆精品新av中文字幕| 欧美成人video| 国产精品77777竹菊影视小说| 国产女人18毛片水真多成人如厕 | 欧美亚洲一区三区| 丝袜a∨在线一区二区三区不卡| 91精品视频网| 国产乱妇无码大片在线观看| 国产精品麻豆视频| 欧美视频一二三区| 韩国v欧美v亚洲v日本v| 国产精品嫩草99a| 欧美日韩亚洲不卡| 久久99精品久久久|