
fr.esrf.Tango.DevVarBooleanArrayHolder 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 alias "DevVarBooleanArray".
*
* @author JacORB IDL compiler V 3.8
* @version generated at Sep 13, 2018 7:12:39 PM
*/
public class DevVarBooleanArrayHolder
implements org.omg.CORBA.portable.Streamable
{
public boolean[] value;
public DevVarBooleanArrayHolder ()
{
}
public DevVarBooleanArrayHolder (final boolean[] initial)
{
value = initial;
}
public org.omg.CORBA.TypeCode _type ()
{
return DevVarBooleanArrayHelper.type ();
}
public void _read (final org.omg.CORBA.portable.InputStream in)
{
value = DevVarBooleanArrayHelper.read (in);
}
public void _write (final org.omg.CORBA.portable.OutputStream out)
{
DevVarBooleanArrayHelper.write (out,value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy