blob: b891448d1da241cdb7b72d4547e5f60b0269ed20 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package d.e.f;
/**
*
*/
public class ClassD {
public void methodOne(ClassD arg) {
System.out.println(arg.getClass() + "methodOne()");
}
}