com.arjuna.ArjunaOTS.OTSAbstractRecordHelper Maven / Gradle / Ivy
The newest version!
package com.arjuna.ArjunaOTS;
/**
* Generated from IDL interface "OTSAbstractRecord".
*
* @author JacORB IDL compiler V 2.3.1 (JBoss patch01), 29-Jul-2009
* @version generated at Oct 2, 2012 3:07:46 PM
*/
public final class OTSAbstractRecordHelper
{
public static void insert (final org.omg.CORBA.Any any, final com.arjuna.ArjunaOTS.OTSAbstractRecord s)
{
any.insert_Object(s);
}
public static com.arjuna.ArjunaOTS.OTSAbstractRecord extract(final org.omg.CORBA.Any any)
{
return narrow(any.extract_Object()) ;
}
public static org.omg.CORBA.TypeCode type()
{
return org.omg.CORBA.ORB.init().create_interface_tc("IDL:arjuna.com/ArjunaOTS/OTSAbstractRecord:1.0", "OTSAbstractRecord");
}
public static String id()
{
return "IDL:arjuna.com/ArjunaOTS/OTSAbstractRecord:1.0";
}
public static OTSAbstractRecord read(final org.omg.CORBA.portable.InputStream in)
{
return narrow(in.read_Object(com.arjuna.ArjunaOTS._OTSAbstractRecordStub.class));
}
public static void write(final org.omg.CORBA.portable.OutputStream _out, final com.arjuna.ArjunaOTS.OTSAbstractRecord s)
{
_out.write_Object(s);
}
public static com.arjuna.ArjunaOTS.OTSAbstractRecord narrow(final org.omg.CORBA.Object obj)
{
if (obj == null)
{
return null;
}
else if (obj instanceof com.arjuna.ArjunaOTS.OTSAbstractRecord)
{
return (com.arjuna.ArjunaOTS.OTSAbstractRecord)obj;
}
else if (obj._is_a("IDL:arjuna.com/ArjunaOTS/OTSAbstractRecord:1.0"))
{
com.arjuna.ArjunaOTS._OTSAbstractRecordStub stub;
stub = new com.arjuna.ArjunaOTS._OTSAbstractRecordStub();
stub._set_delegate(((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate());
return stub;
}
else
{
throw new org.omg.CORBA.BAD_PARAM("Narrow failed");
}
}
public static com.arjuna.ArjunaOTS.OTSAbstractRecord unchecked_narrow(final org.omg.CORBA.Object obj)
{
if (obj == null)
{
return null;
}
else if (obj instanceof com.arjuna.ArjunaOTS.OTSAbstractRecord)
{
return (com.arjuna.ArjunaOTS.OTSAbstractRecord)obj;
}
else
{
com.arjuna.ArjunaOTS._OTSAbstractRecordStub stub;
stub = new com.arjuna.ArjunaOTS._OTSAbstractRecordStub();
stub._set_delegate(((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate());
return stub;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy