blob: 49b07750f195e6e4640eadb7cc59a9c96c6341ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package a.b.c;
import java.util.List;
/**
* Tests that methods that return an Object array are processed correctly
* @since
*/
public class TestMethod16 {
/**
* @noreference
* @param num
* @param dbls
* @param cs
* @param in
*/
public String[][] one(int num, Double[][] dbls, char[] cs, Integer in) {
return null;
}
/**
* @noextend
* @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;
}
}