com.sun.corba.se.impl.corba.AnyImpl Java Examples
The following examples show how to use
com.sun.corba.se.impl.corba.AnyImpl.
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: SlotTable.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #2
Source File: SlotTable.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #3
Source File: SlotTable.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #4
Source File: SlotTable.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #5
Source File: SlotTable.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #6
Source File: SlotTable.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #7
Source File: SlotTable.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #8
Source File: SlotTable.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #9
Source File: SlotTable.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #10
Source File: SlotTable.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * This method get the slot data for the given slot id (index). */ public Any get_slot( int id ) throws InvalidSlot { // First check whether the slot is allocated // If not, raise the invalid slot exception if( id >= theSlotData.length ) { throw new InvalidSlot(); } if( theSlotData[id] == null ) { theSlotData [id] = new AnyImpl(orb); } return theSlotData[ id ]; }
Example #11
Source File: DynAnyUtil.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
static Any copy(Any inAny, ORB orb) { return new AnyImpl(orb, inAny); }
Example #12
Source File: DynAnyUtil.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
static Any extractAnyFromStream(TypeCode memberType, InputStream input, ORB orb) { return AnyImpl.extractAnyFromStream(memberType, input, orb); }
Example #13
Source File: ORBSingleton.java From hottub with GNU General Public License v2.0 | 4 votes |
public Any create_any() { return new AnyImpl(this); }
Example #14
Source File: ORBImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Create a new Any * * @return the new Any created. */ public synchronized Any create_any() { checkShutdownState(); return new AnyImpl(this); }
Example #15
Source File: ORBSingleton.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public Any create_any() { return new AnyImpl(this); }
Example #16
Source File: ORBSingleton.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public Any create_any() { return new AnyImpl(this); }
Example #17
Source File: DynAnyUtil.java From hottub with GNU General Public License v2.0 | 4 votes |
static Any extractAnyFromStream(TypeCode memberType, InputStream input, ORB orb) { return AnyImpl.extractAnyFromStream(memberType, input, orb); }
Example #18
Source File: DynAnyUtil.java From hottub with GNU General Public License v2.0 | 4 votes |
static Any copy(Any inAny, ORB orb) { return new AnyImpl(orb, inAny); }
Example #19
Source File: ORBImpl.java From hottub with GNU General Public License v2.0 | 4 votes |
/** * Create a new Any * * @return the new Any created. */ public synchronized Any create_any() { checkShutdownState(); return new AnyImpl(this); }
Example #20
Source File: DynAnyUtil.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
static Any extractAnyFromStream(TypeCode memberType, InputStream input, ORB orb) { return AnyImpl.extractAnyFromStream(memberType, input, orb); }
Example #21
Source File: DynAnyUtil.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
static Any extractAnyFromStream(TypeCode memberType, InputStream input, ORB orb) { return AnyImpl.extractAnyFromStream(memberType, input, orb); }
Example #22
Source File: DynAnyUtil.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
static Any copy(Any inAny, ORB orb) { return new AnyImpl(orb, inAny); }
Example #23
Source File: ORBImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** * Create a new Any * * @return the new Any created. */ public synchronized Any create_any() { checkShutdownState(); return new AnyImpl(this); }
Example #24
Source File: ORBSingleton.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public Any create_any() { return new AnyImpl(this); }
Example #25
Source File: DynAnyUtil.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
static Any extractAnyFromStream(TypeCode memberType, InputStream input, ORB orb) { return AnyImpl.extractAnyFromStream(memberType, input, orb); }
Example #26
Source File: DynAnyUtil.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
static Any copy(Any inAny, ORB orb) { return new AnyImpl(orb, inAny); }
Example #27
Source File: ORBImpl.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Create a new Any * * @return the new Any created. */ public synchronized Any create_any() { checkShutdownState(); return new AnyImpl(this); }
Example #28
Source File: ORBSingleton.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public Any create_any() { return new AnyImpl(this); }
Example #29
Source File: ORBSingleton.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public Any create_any() { return new AnyImpl(this); }
Example #30
Source File: DynAnyUtil.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
static Any copy(Any inAny, ORB orb) { return new AnyImpl(orb, inAny); }