
fr.esrf.Tango.PeriodicEventPropHelper 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 struct "PeriodicEventProp".
*
* @author JacORB IDL compiler V 3.8
* @version generated at Sep 13, 2018 7:12:39 PM
*/
public abstract class PeriodicEventPropHelper
{
private volatile static org.omg.CORBA.TypeCode _type;
public static org.omg.CORBA.TypeCode type ()
{
if (_type == null)
{
synchronized(PeriodicEventPropHelper.class)
{
if (_type == null)
{
_type = org.omg.CORBA.ORB.init().create_struct_tc(fr.esrf.Tango.PeriodicEventPropHelper.id(),"PeriodicEventProp",new org.omg.CORBA.StructMember[]{new org.omg.CORBA.StructMember("period", org.omg.CORBA.ORB.init().create_string_tc(0), null),new org.omg.CORBA.StructMember("extensions", org.omg.CORBA.ORB.init().create_alias_tc(fr.esrf.Tango.DevVarStringArrayHelper.id(), "DevVarStringArray",org.omg.CORBA.ORB.init().create_sequence_tc(0, org.omg.CORBA.ORB.init().create_string_tc(0))), null)});
}
}
}
return _type;
}
public static void insert (final org.omg.CORBA.Any any, final fr.esrf.Tango.PeriodicEventProp s)
{
any.type(type());
write( any.create_output_stream(),s);
}
public static fr.esrf.Tango.PeriodicEventProp extract (final org.omg.CORBA.Any any)
{
org.omg.CORBA.portable.InputStream in = any.create_input_stream();
try
{
return read (in);
}
finally
{
try
{
in.close();
}
catch (java.io.IOException e)
{
throw new RuntimeException("Unexpected exception " + e.toString() );
}
}
}
public static String id()
{
return "IDL:Tango/PeriodicEventProp:1.0";
}
public static fr.esrf.Tango.PeriodicEventProp read (final org.omg.CORBA.portable.InputStream in)
{
fr.esrf.Tango.PeriodicEventProp result = new fr.esrf.Tango.PeriodicEventProp();
result.period=in.read_string();
result.extensions = fr.esrf.Tango.DevVarStringArrayHelper.read(in);
return result;
}
public static void write (final org.omg.CORBA.portable.OutputStream out, final fr.esrf.Tango.PeriodicEventProp s)
{
java.lang.String tmpResult44 = s.period;
out.write_string( tmpResult44 );
fr.esrf.Tango.DevVarStringArrayHelper.write(out,s.extensions);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy