Files
DistributedSystems/week1_TinsaeGhilay/Task2/GraphicsApp/RectanglePackage/IndexOutOfBoundsHolder.java
2025-12-12 22:48:54 +01:00

39 lines
979 B
Java

package GraphicsApp.RectanglePackage;
/**
* GraphicsApp/RectanglePackage/IndexOutOfBoundsHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from Graphics.idl
* Tuesday, November 11, 2025 6:46:29 PM CET
*/
public final class IndexOutOfBoundsHolder implements org.omg.CORBA.portable.Streamable
{
public GraphicsApp.RectanglePackage.IndexOutOfBounds value = null;
public IndexOutOfBoundsHolder ()
{
}
public IndexOutOfBoundsHolder (GraphicsApp.RectanglePackage.IndexOutOfBounds initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = GraphicsApp.RectanglePackage.IndexOutOfBoundsHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
GraphicsApp.RectanglePackage.IndexOutOfBoundsHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return GraphicsApp.RectanglePackage.IndexOutOfBoundsHelper.type ();
}
}