blob: 71e1141c78a17068171b4c6a40362219c8194ce4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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 a.b.c;
import java.util.List;
/**
* Tests that methods with a mixed bag of parameters are processed correctly
* @since
*/
public class TestMethod13 {
/**
* @noreference
* @param num
* @param dbls
* @param cs
* @param in
*/
public void one(int num, Double[][] dbls, char[] cs, Integer in) {
}
/**
* @nooverride
* @param ls
* @param d
* @param c
* @param is
* @param r
*/
protected void two(List[][] ls, double d, char c, int[] is, Runnable[] r) {
}
}