01: package net.sf.mockcreator;
02:
03: import java.util.Map;
04: import java.util.Set;
05:
06: public interface Rich {
07: Map rich(String foo, int bar, Set baz, double[] xxx)
08: throws IllegalArgumentException, OutOfMemoryError;
09:
10: int rich(int[][][][] arr) throws RuntimeException;
11:
12: int[][][] rich(int xxx) throws RuntimeException;
13: }
|