blob: fce2b8efa082f6cfc7b074439d94d9cd2738f52c [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;
/**
* That methods that return a primitive type array are processed correctly
* @since
*/
public class TestMethod17 {
/**
* @noreference
* @param num
* @param dbls
* @param cs
* @param in
*/
public char[][] one(int num, Double[][] dbls, char[] cs, Integer in) {
return null;
}
/**
* @nooverride
* @param ls
* @param d
* @param c
* @param is
* @param r
*/
protected double[] two(List[][] ls, double d, char c, int[] is, Runnable[] r) {
return null;
}
}