/* * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package myPkg1; public class SuperClazz { public static void testParent() { System.out.println("SuperClazz: entering testParent()"); // The line below will be used to check for successful class transformation System.out.println("parent-transform-check: this-should-be-transformed"); } }