
fr.esrf.Tango.Device_2Helper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JavaTangoIDL Show documentation
Show all versions of JavaTangoIDL Show documentation
Java Tango IDL (compiled with jacorb IDL compiler, http://www.jacorb.org)
package fr.esrf.Tango;
/**
* Generated from IDL interface "Device_2".
*
* @author JacORB IDL compiler V 3.8
* @version generated at Sep 13, 2018 7:12:39 PM
*/
public abstract class Device_2Helper
{
private volatile static org.omg.CORBA.TypeCode _type;
public static org.omg.CORBA.TypeCode type ()
{
if (_type == null)
{
synchronized(Device_2Helper.class)
{
if (_type == null)
{
_type = org.omg.CORBA.ORB.init().create_interface_tc("IDL:Tango/Device_2:1.0", "Device_2");
}
}
}
return _type;
}
public static void insert (final org.omg.CORBA.Any any, final fr.esrf.Tango.Device_2 s)
{
any.insert_Object(s);
}
public static fr.esrf.Tango.Device_2 extract(final org.omg.CORBA.Any any)
{
return narrow(any.extract_Object()) ;
}
public static String id()
{
return "IDL:Tango/Device_2:1.0";
}
public static Device_2 read(final org.omg.CORBA.portable.InputStream in)
{
return narrow(in.read_Object(fr.esrf.Tango._Device_2Stub.class));
}
public static void write(final org.omg.CORBA.portable.OutputStream _out, final fr.esrf.Tango.Device_2 s)
{
_out.write_Object(s);
}
public static fr.esrf.Tango.Device_2 narrow(final org.omg.CORBA.Object obj)
{
if (obj == null)
{
return null;
}
else if (obj instanceof fr.esrf.Tango.Device_2)
{
return (fr.esrf.Tango.Device_2)obj;
}
else if (obj._is_a("IDL:Tango/Device_2:1.0"))
{
fr.esrf.Tango._Device_2Stub stub;
stub = new fr.esrf.Tango._Device_2Stub();
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 fr.esrf.Tango.Device_2 unchecked_narrow(final org.omg.CORBA.Object obj)
{
if (obj == null)
{
return null;
}
else if (obj instanceof fr.esrf.Tango.Device_2)
{
return (fr.esrf.Tango.Device_2)obj;
}
else
{
fr.esrf.Tango._Device_2Stub stub;
stub = new fr.esrf.Tango._Device_2Stub();
stub._set_delegate(((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate());
return stub;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy