| package testPackage; |
| /******************************************************************************* |
| * Copyright (c) 2004 IBM Corporation and others. |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Common Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/cpl-v10.html |
| * |
| * Contributors: |
| * IBM Corporation - initial API and implementation |
| *******************************************************************************/ |
| /* |
| * $RCSfile: TestCtorWithNull.java,v $ |
| * $Revision: 1.1 $ $Date: 2004/02/09 18:29:36 $ |
| */ |
| |
| /** |
| * |
| * @since 1.0.0 |
| */ |
| public class TestCtorWithNull { |
| |
| public TestCtorWithNull(String x) { |
| // This is just a test to see that ctor will be selected if it has a null passed in for Tree Expression Processing. |
| } |
| |
| } |