
fr.esrf.Tango.DevicePOATie 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;
import org.omg.PortableServer.POA;
/**
* Generated from IDL interface "Device".
*
* @author JacORB IDL compiler V 3.8
* @version generated at Sep 13, 2018 7:12:39 PM
*/
public class DevicePOATie
extends DevicePOA
{
private DeviceOperations _delegate;
private POA _poa;
public DevicePOATie(DeviceOperations delegate)
{
_delegate = delegate;
}
public DevicePOATie(DeviceOperations delegate, POA poa)
{
_delegate = delegate;
_poa = poa;
}
public fr.esrf.Tango.Device _this()
{
org.omg.CORBA.Object __o = _this_object() ;
fr.esrf.Tango.Device __r = fr.esrf.Tango.DeviceHelper.narrow(__o);
return __r;
}
public fr.esrf.Tango.Device _this(org.omg.CORBA.ORB orb)
{
org.omg.CORBA.Object __o = _this_object(orb) ;
fr.esrf.Tango.Device __r = fr.esrf.Tango.DeviceHelper.narrow(__o);
return __r;
}
public DeviceOperations _delegate()
{
return _delegate;
}
public void _delegate(DeviceOperations delegate)
{
_delegate = delegate;
}
public POA _default_POA()
{
if (_poa != null)
{
return _poa;
}
return super._default_POA();
}
public void write_attributes(fr.esrf.Tango.AttributeValue[] values) throws fr.esrf.Tango.DevFailed
{
_delegate.write_attributes(values);
}
public java.lang.String name()
{
return _delegate.name();
}
public void ping() throws fr.esrf.Tango.DevFailed
{
_delegate.ping();
}
public java.lang.String description()
{
return _delegate.description();
}
public fr.esrf.Tango.AttributeValue[] read_attributes(java.lang.String[] names) throws fr.esrf.Tango.DevFailed
{
return _delegate.read_attributes(names);
}
public java.lang.String adm_name()
{
return _delegate.adm_name();
}
public fr.esrf.Tango.DevCmdInfo[] command_list_query() throws fr.esrf.Tango.DevFailed
{
return _delegate.command_list_query();
}
public fr.esrf.Tango.DevInfo info() throws fr.esrf.Tango.DevFailed
{
return _delegate.info();
}
public org.omg.CORBA.Any command_inout(java.lang.String command, org.omg.CORBA.Any argin) throws fr.esrf.Tango.DevFailed
{
return _delegate.command_inout(command,argin);
}
public fr.esrf.Tango.DevState state()
{
return _delegate.state();
}
public java.lang.String status()
{
return _delegate.status();
}
public void set_attribute_config(fr.esrf.Tango.AttributeConfig[] new_conf) throws fr.esrf.Tango.DevFailed
{
_delegate.set_attribute_config(new_conf);
}
public java.lang.String[] black_box(int n) throws fr.esrf.Tango.DevFailed
{
return _delegate.black_box(n);
}
public fr.esrf.Tango.AttributeConfig[] get_attribute_config(java.lang.String[] names) throws fr.esrf.Tango.DevFailed
{
return _delegate.get_attribute_config(names);
}
public fr.esrf.Tango.DevCmdInfo command_query(java.lang.String command) throws fr.esrf.Tango.DevFailed
{
return _delegate.command_query(command);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy