0N/A/*
2362N/A * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apublic class ArrayTest implements java.io.Serializable {
0N/A byte b[] = { 0, 1};
0N/A short s[] = { 0, 1, 2};
0N/A char c[] = { 'Z', 'Y', 'X'};
0N/A int i[] = { 0, 1, 2, 3, 4};
0N/A long l[] = { 0, 1, 2, 3, 4, 5};
0N/A boolean z[] = new boolean[4];
0N/A float f[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f};
0N/A double d[] = { 1.0d, 2.0d, 3.0d, 4.0d, 5.0d, 6.0d, 7.0d};
0N/A String string[] = { "ABC", "DEF", "GHI", "JKL"};
0N/A PrimitivesTest prim[] = { new PrimitivesTest(), new PrimitivesTest() } ;
0N/A
0N/A transient int ti[] = {99, 98, 97, 96};
0N/A ArrayTest self = this;
0N/A
0N/A static int si[] = {9, 8, 7, 6, 4} ;
0N/A
0N/A public ArrayTest() {
0N/A z[0] = true;
0N/A z[1] = false;
0N/A z[2] = true;
0N/A z[3] = false;
0N/A }
0N/A
0N/A public boolean equals(ArrayTest other) {
0N/A boolean ret = true;
0N/A if (other == null) {
0N/A System.err.println("\nother Array is " + other);
0N/A return false;
0N/A }
0N/A if (!ArrayOpsTest.verify(i, other.i)) {
0N/A System.err.println("\nUnpickling of int array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(b, other.b)) {
0N/A System.err.println("\nUnpickling of byte array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(s, other.s)) {
0N/A System.err.println("\nUnpickling of short array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(c, other.c)) {
0N/A System.err.println("\nUnpickling of char array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(l, other.l)) {
0N/A System.err.println("\nUnpickling of long array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(f, other.f)) {
0N/A System.err.println("\nUnpickling of float array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(d, other.d)) {
0N/A System.err.println("\nUnpickling of double array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(z, other.z)) {
0N/A System.err.println("\nUnpickling of boolean array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(string, other.string)) {
0N/A System.err.println("\nUnpickling of String array failed");
0N/A ret = false;
0N/A }
0N/A if (!ArrayOpsTest.verify(prim, other.prim)) {
0N/A System.err.println("\nUnpickling of Primitives array failed");
0N/A ret = false;
0N/A }
0N/A return ret;
0N/A }
0N/A}