fr.esrf.Tango.DeviceHelper 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)
The newest version!
package fr.esrf.Tango;
/**
* Generated from IDL interface "Device".
*
* @author JacORB IDL compiler V 3.8
* @version generated at Oct 21, 2017 6:12:33 PM
*/
public abstract class DeviceHelper
{
private volatile static org.omg.CORBA.TypeCode _type;
public static org.omg.CORBA.TypeCode type ()
{
if (_type == null)
{
synchronized(DeviceHelper.class)
{
if (_type == null)
{
_type = org.omg.CORBA.ORB.init().create_interface_tc("IDL:Tango/Device:1.0", "Device");
}
}
}
return _type;
}
public static void insert (final org.omg.CORBA.Any any, final fr.esrf.Tango.Device s)
{
any.insert_Object(s);
}
public static fr.esrf.Tango.Device extract(final org.omg.CORBA.Any any)
{
return narrow(any.extract_Object()) ;
}
public static String id()
{
return "IDL:Tango/Device:1.0";
}
public static Device read(final org.omg.CORBA.portable.InputStream in)
{
return narrow(in.read_Object(fr.esrf.Tango._DeviceStub.class));
}
public static void write(final org.omg.CORBA.portable.OutputStream _out, final fr.esrf.Tango.Device s)
{
_out.write_Object(s);
}
public static fr.esrf.Tango.Device narrow(final org.omg.CORBA.Object obj)
{
if (obj == null)
{
return null;
}
else if (obj instanceof fr.esrf.Tango.Device)
{
return (fr.esrf.Tango.Device)obj;
}
else if (obj._is_a("IDL:Tango/Device:1.0"))
{
fr.esrf.Tango._DeviceStub stub;
stub = new fr.esrf.Tango._DeviceStub();
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 unchecked_narrow(final org.omg.CORBA.Object obj)
{
if (obj == null)
{
return null;
}
else if (obj instanceof fr.esrf.Tango.Device)
{
return (fr.esrf.Tango.Device)obj;
}
else
{
fr.esrf.Tango._DeviceStub stub;
stub = new fr.esrf.Tango._DeviceStub();
stub._set_delegate(((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate());
return stub;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy