Package se.arnetheduck.j2c.test.array

Source Code of se.arnetheduck.j2c.test.array.Classes

package se.arnetheduck.j2c.test.array;

import se.arnetheduck.j2c.test.Empty;
import se.arnetheduck.j2c.test.Sub;

public class Classes {
  Empty[] h;

  Sub[] h2;

  Object[] x() {
    Empty[] ee = h2;
    ee[0] = ee[1];
    return ee;
  }

  Empty[] hclone() {
    return h.clone();
  }

  Empty[] hh() {
    return new Empty[] { null, new Empty(), new Sub() };
  }
}
TOP

Related Classes of se.arnetheduck.j2c.test.array.Classes

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.