@@ -144,16 +144,16 @@ public void onInitReceive() throws RemoteException
144144
145145 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .INIT .getValue ());
146146 Bundle data = new Bundle ();
147- StructBoolArray testpropBool = new StructBoolArray [1 ];
147+ StructBool [] testpropBool = new StructBool [1 ];
148148 testpropBool [0 ] = Testbed1TestHelper .makeTestStructBool ();
149149 data .putParcelableArray ("propBool" , StructBoolParcelable .wrapArray (testpropBool ));
150- StructIntArray testpropInt = new StructIntArray [1 ];
150+ StructInt [] testpropInt = new StructInt [1 ];
151151 testpropInt [0 ] = Testbed1TestHelper .makeTestStructInt ();
152152 data .putParcelableArray ("propInt" , StructIntParcelable .wrapArray (testpropInt ));
153- StructFloatArray testpropFloat = new StructFloatArray [1 ];
153+ StructFloat [] testpropFloat = new StructFloat [1 ];
154154 testpropFloat [0 ] = Testbed1TestHelper .makeTestStructFloat ();
155155 data .putParcelableArray ("propFloat" , StructFloatParcelable .wrapArray (testpropFloat ));
156- StructStringArray testpropString = new StructStringArray [1 ];
156+ StructString [] testpropString = new StructString [1 ];
157157 testpropString [0 ] = Testbed1TestHelper .makeTestStructString ();
158158 data .putParcelableArray ("propString" , StructStringParcelable .wrapArray (testpropString ));
159159
@@ -172,7 +172,7 @@ public void onReceivepropBoolPropertyChangeTest() throws RemoteException {
172172 // Create and send message
173173 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SET_PropBool .getValue ());
174174 Bundle data = new Bundle ();
175- StructBoolArray testpropBool = new StructBoolArray [1 ];
175+ StructBool [] testpropBool = new StructBool [1 ];
176176 testpropBool [0 ] = Testbed1TestHelper .makeTestStructBool ();
177177 data .putParcelableArray ("propBool" , StructBoolParcelable .wrapArray (testpropBool ));
178178
@@ -185,7 +185,7 @@ public void onReceivepropBoolPropertyChangeTest() throws RemoteException {
185185 @ Test
186186 public void setPropertyRequestpropBool ()
187187 {
188- StructBoolArray testpropBool = new StructBoolArray [1 ];
188+ StructBool [] testpropBool = new StructBool [1 ];
189189 testpropBool [0 ] = Testbed1TestHelper .makeTestStructBool ();
190190
191191 testedClient .setPropBool (testpropBool );
@@ -207,7 +207,7 @@ public void onReceivepropIntPropertyChangeTest() throws RemoteException {
207207 // Create and send message
208208 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SET_PropInt .getValue ());
209209 Bundle data = new Bundle ();
210- StructIntArray testpropInt = new StructIntArray [1 ];
210+ StructInt [] testpropInt = new StructInt [1 ];
211211 testpropInt [0 ] = Testbed1TestHelper .makeTestStructInt ();
212212 data .putParcelableArray ("propInt" , StructIntParcelable .wrapArray (testpropInt ));
213213
@@ -220,7 +220,7 @@ public void onReceivepropIntPropertyChangeTest() throws RemoteException {
220220 @ Test
221221 public void setPropertyRequestpropInt ()
222222 {
223- StructIntArray testpropInt = new StructIntArray [1 ];
223+ StructInt [] testpropInt = new StructInt [1 ];
224224 testpropInt [0 ] = Testbed1TestHelper .makeTestStructInt ();
225225
226226 testedClient .setPropInt (testpropInt );
@@ -242,7 +242,7 @@ public void onReceivepropFloatPropertyChangeTest() throws RemoteException {
242242 // Create and send message
243243 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SET_PropFloat .getValue ());
244244 Bundle data = new Bundle ();
245- StructFloatArray testpropFloat = new StructFloatArray [1 ];
245+ StructFloat [] testpropFloat = new StructFloat [1 ];
246246 testpropFloat [0 ] = Testbed1TestHelper .makeTestStructFloat ();
247247 data .putParcelableArray ("propFloat" , StructFloatParcelable .wrapArray (testpropFloat ));
248248
@@ -255,7 +255,7 @@ public void onReceivepropFloatPropertyChangeTest() throws RemoteException {
255255 @ Test
256256 public void setPropertyRequestpropFloat ()
257257 {
258- StructFloatArray testpropFloat = new StructFloatArray [1 ];
258+ StructFloat [] testpropFloat = new StructFloat [1 ];
259259 testpropFloat [0 ] = Testbed1TestHelper .makeTestStructFloat ();
260260
261261 testedClient .setPropFloat (testpropFloat );
@@ -277,7 +277,7 @@ public void onReceivepropStringPropertyChangeTest() throws RemoteException {
277277 // Create and send message
278278 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SET_PropString .getValue ());
279279 Bundle data = new Bundle ();
280- StructStringArray testpropString = new StructStringArray [1 ];
280+ StructString [] testpropString = new StructString [1 ];
281281 testpropString [0 ] = Testbed1TestHelper .makeTestStructString ();
282282 data .putParcelableArray ("propString" , StructStringParcelable .wrapArray (testpropString ));
283283
@@ -290,7 +290,7 @@ public void onReceivepropStringPropertyChangeTest() throws RemoteException {
290290 @ Test
291291 public void setPropertyRequestpropString ()
292292 {
293- StructStringArray testpropString = new StructStringArray [1 ];
293+ StructString [] testpropString = new StructString [1 ];
294294 testpropString [0 ] = Testbed1TestHelper .makeTestStructString ();
295295
296296 testedClient .setPropString (testpropString );
@@ -312,7 +312,7 @@ public void whenNotifiedsigBool() throws RemoteException
312312
313313 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SIG_SigBool .getValue ());
314314 Bundle data = new Bundle ();
315- StructBoolArray testparamBool = new StructBoolArray [1 ];
315+ StructBool [] testparamBool = new StructBool [1 ];
316316 testparamBool [0 ] = Testbed1TestHelper .makeTestStructBool ();
317317 data .putParcelableArray ("paramBool" , StructBoolParcelable .wrapArray (testparamBool ));
318318
@@ -329,7 +329,7 @@ public void whenNotifiedsigInt() throws RemoteException
329329
330330 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SIG_SigInt .getValue ());
331331 Bundle data = new Bundle ();
332- StructIntArray testparamInt = new StructIntArray [1 ];
332+ StructInt [] testparamInt = new StructInt [1 ];
333333 testparamInt [0 ] = Testbed1TestHelper .makeTestStructInt ();
334334 data .putParcelableArray ("paramInt" , StructIntParcelable .wrapArray (testparamInt ));
335335
@@ -346,7 +346,7 @@ public void whenNotifiedsigFloat() throws RemoteException
346346
347347 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SIG_SigFloat .getValue ());
348348 Bundle data = new Bundle ();
349- StructFloatArray testparamFloat = new StructFloatArray [1 ];
349+ StructFloat [] testparamFloat = new StructFloat [1 ];
350350 testparamFloat [0 ] = Testbed1TestHelper .makeTestStructFloat ();
351351 data .putParcelableArray ("paramFloat" , StructFloatParcelable .wrapArray (testparamFloat ));
352352
@@ -363,7 +363,7 @@ public void whenNotifiedsigString() throws RemoteException
363363
364364 Message msg = Message .obtain (null , StructArrayInterfaceMessageType .SIG_SigString .getValue ());
365365 Bundle data = new Bundle ();
366- StructStringArray testparamString = new StructStringArray [1 ];
366+ StructString [] testparamString = new StructString [1 ];
367367 testparamString [0 ] = Testbed1TestHelper .makeTestStructString ();
368368 data .putParcelableArray ("paramString" , StructStringParcelable .wrapArray (testparamString ));
369369
@@ -379,9 +379,9 @@ public void whenNotifiedsigString() throws RemoteException
379379 public void onfuncBoolRequest () throws RemoteException {
380380
381381 // Execute method
382- StructBoolArray testparamBool = new StructBoolArray [1 ];
382+ StructBool [] testparamBool = new StructBool [1 ];
383383 testparamBool [0 ] = Testbed1TestHelper .makeTestStructBool ();
384- StructBoolArray expectedResult = new StructBoolArray [1 ];
384+ StructBool [] expectedResult = new StructBool [1 ];
385385 expectedResult [0 ] = Testbed1TestHelper .makeTestStructBool ();
386386
387387 AtomicBoolean receivedResp = new AtomicBoolean (false );
@@ -426,9 +426,9 @@ public void onfuncBoolRequest() throws RemoteException {
426426 public void onfuncIntRequest () throws RemoteException {
427427
428428 // Execute method
429- StructIntArray testparamInt = new StructIntArray [1 ];
429+ StructInt [] testparamInt = new StructInt [1 ];
430430 testparamInt [0 ] = Testbed1TestHelper .makeTestStructInt ();
431- StructIntArray expectedResult = new StructIntArray [1 ];
431+ StructInt [] expectedResult = new StructInt [1 ];
432432 expectedResult [0 ] = Testbed1TestHelper .makeTestStructInt ();
433433
434434 AtomicBoolean receivedResp = new AtomicBoolean (false );
@@ -473,9 +473,9 @@ public void onfuncIntRequest() throws RemoteException {
473473 public void onfuncFloatRequest () throws RemoteException {
474474
475475 // Execute method
476- StructFloatArray testparamFloat = new StructFloatArray [1 ];
476+ StructFloat [] testparamFloat = new StructFloat [1 ];
477477 testparamFloat [0 ] = Testbed1TestHelper .makeTestStructFloat ();
478- StructFloatArray expectedResult = new StructFloatArray [1 ];
478+ StructFloat [] expectedResult = new StructFloat [1 ];
479479 expectedResult [0 ] = Testbed1TestHelper .makeTestStructFloat ();
480480
481481 AtomicBoolean receivedResp = new AtomicBoolean (false );
@@ -520,9 +520,9 @@ public void onfuncFloatRequest() throws RemoteException {
520520 public void onfuncStringRequest () throws RemoteException {
521521
522522 // Execute method
523- StructStringArray testparamString = new StructStringArray [1 ];
523+ StructString [] testparamString = new StructString [1 ];
524524 testparamString [0 ] = Testbed1TestHelper .makeTestStructString ();
525- StructStringArray expectedResult = new StructStringArray [1 ];
525+ StructString [] expectedResult = new StructString [1 ];
526526 expectedResult [0 ] = Testbed1TestHelper .makeTestStructString ();
527527
528528 AtomicBoolean receivedResp = new AtomicBoolean (false );
0 commit comments