summaryrefslogtreecommitdiffstats
path: root/sandbox/event/modules/binding-corba-runtime/src/test/java/org/apache/tuscany/sca/binding/corba/testing/arrays_unions/TestStruct.java
blob: 2b239deadc3bb3fcff899a9ffde5e60e304c2403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.apache.tuscany.sca.binding.corba.testing.arrays_unions;


/**
* org/apache/tuscany/sca/binding/corba/testing/arrays_unions/TestStruct.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from arrays_unions.idl
* niedziela, 17 sierpie� 2008 15:45:39 CEST
*/

public final class TestStruct implements org.omg.CORBA.portable.IDLEntity
{
  public String oneDimArray[] = null;
  public int twoDimArray[][] = null;
  public float threeDimArray[][][] = null;

  public TestStruct ()
  {
  } // ctor

  public TestStruct (String[] _oneDimArray, int[][] _twoDimArray, float[][][] _threeDimArray)
  {
    oneDimArray = _oneDimArray;
    twoDimArray = _twoDimArray;
    threeDimArray = _threeDimArray;
  } // ctor

} // class TestStruct