org.omg.CORBA.portable.Streamable Java Examples
The following examples show how to use
org.omg.CORBA.portable.Streamable.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AnyImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #2
Source File: AnyImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #3
Source File: AnyImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #4
Source File: AnyImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #5
Source File: AnyImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #6
Source File: AnyImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #7
Source File: AnyImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #8
Source File: AnyImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #9
Source File: AnyImpl.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #10
Source File: AnyImpl.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * takes a streamable and inserts its reference into the any * * @param s the streamable to insert */ public void insert_Streamable(Streamable s) { //debug.log ("insert_Streamable"); typeCode = TypeCodeImpl.convertToNative(orb, s._type()); object = s; isInitialized = true; }
Example #11
Source File: AnyImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #12
Source File: AnyImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #13
Source File: AnyImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #14
Source File: AnyImpl.java From hottub with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #15
Source File: AnyImpl.java From JDKSourceCode1.8 with MIT License | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #16
Source File: AnyImpl.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #17
Source File: AnyImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #18
Source File: AnyImpl.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #19
Source File: AnyImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #20
Source File: AnyImpl.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public Streamable extract_Streamable() { //debug.log( "extract_Streamable" ) ; return (Streamable)object; }
Example #21
Source File: Any.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Inserts the given <code>Streamable</code> object * into this <code>Any</code> object's <code>value</code> field. * This method allows the insertion of non-primitive IDL types. * * @param s the <code>Streamable</code> object to insert into this * <code>Any</code> object; may be a non-primitive * IDL type * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public void insert_Streamable(Streamable s) { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #22
Source File: Any.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Extracts a <code>Streamable</code> from this <code>Any</code> object's * <code>value</code> field. This method allows the extraction of * non-primitive IDL types. * * @return the <code>Streamable</code> stored in the <code>Any</code> object. * @throws BAD_INV_ORDER if the caller has invoked operations in the wrong order * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public org.omg.CORBA.portable.Streamable extract_Streamable() throws org.omg.CORBA.BAD_INV_ORDER { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #23
Source File: Any.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Extracts a <code>Streamable</code> from this <code>Any</code> object's * <code>value</code> field. This method allows the extraction of * non-primitive IDL types. * * @return the <code>Streamable</code> stored in the <code>Any</code> object. * @throws BAD_INV_ORDER if the caller has invoked operations in the wrong order * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public org.omg.CORBA.portable.Streamable extract_Streamable() throws org.omg.CORBA.BAD_INV_ORDER { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #24
Source File: Any.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Inserts the given <code>Streamable</code> object * into this <code>Any</code> object's <code>value</code> field. * This method allows the insertion of non-primitive IDL types. * * @param s the <code>Streamable</code> object to insert into this * <code>Any</code> object; may be a non-primitive * IDL type * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public void insert_Streamable(Streamable s) { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #25
Source File: Any.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Inserts the given <code>Streamable</code> object * into this <code>Any</code> object's <code>value</code> field. * This method allows the insertion of non-primitive IDL types. * * @param s the <code>Streamable</code> object to insert into this * <code>Any</code> object; may be a non-primitive * IDL type * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public void insert_Streamable(Streamable s) { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #26
Source File: Any.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Extracts a <code>Streamable</code> from this <code>Any</code> object's * <code>value</code> field. This method allows the extraction of * non-primitive IDL types. * * @return the <code>Streamable</code> stored in the <code>Any</code> object. * @throws BAD_INV_ORDER if the caller has invoked operations in the wrong order * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public org.omg.CORBA.portable.Streamable extract_Streamable() throws org.omg.CORBA.BAD_INV_ORDER { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #27
Source File: Any.java From Java8CN with Apache License 2.0 | 2 votes |
/** * Inserts the given <code>Streamable</code> object * into this <code>Any</code> object's <code>value</code> field. * This method allows the insertion of non-primitive IDL types. * * @param s the <code>Streamable</code> object to insert into this * <code>Any</code> object; may be a non-primitive * IDL type * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public void insert_Streamable(Streamable s) { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #28
Source File: Any.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Inserts the given <code>Streamable</code> object * into this <code>Any</code> object's <code>value</code> field. * This method allows the insertion of non-primitive IDL types. * * @param s the <code>Streamable</code> object to insert into this * <code>Any</code> object; may be a non-primitive * IDL type * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public void insert_Streamable(Streamable s) { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #29
Source File: Any.java From Java8CN with Apache License 2.0 | 2 votes |
/** * Extracts a <code>Streamable</code> from this <code>Any</code> object's * <code>value</code> field. This method allows the extraction of * non-primitive IDL types. * * @return the <code>Streamable</code> stored in the <code>Any</code> object. * @throws BAD_INV_ORDER if the caller has invoked operations in the wrong order * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public org.omg.CORBA.portable.Streamable extract_Streamable() throws org.omg.CORBA.BAD_INV_ORDER { throw new org.omg.CORBA.NO_IMPLEMENT() ; }
Example #30
Source File: Any.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * Inserts the given <code>Streamable</code> object * into this <code>Any</code> object's <code>value</code> field. * This method allows the insertion of non-primitive IDL types. * * @param s the <code>Streamable</code> object to insert into this * <code>Any</code> object; may be a non-primitive * IDL type * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package * comments for unimplemented features</a> */ public void insert_Streamable(Streamable s) { throw new org.omg.CORBA.NO_IMPLEMENT() ; }