src.samples.java.ex.UVA_Sample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fb-contrib Show documentation
Show all versions of fb-contrib Show documentation
An auxiliary findbugs.sourceforge.net plugin for java bug detectors that fall outside the narrow scope of detectors to be packaged with the product itself.
package ex;
import java.util.ArrayList;
import java.util.Date;
public class UVA_Sample extends ArrayList {
private static final long serialVersionUID = -7860932685876390245L;
public void testNormalUVA(String[] foo) {
}
public void testLowUVA1(int boo, String[] hoo) {
}
public static void testStaticUVA(Date[] d) {
}
public void fpNoParms() {
}
public void fpHasOtherArrayUVA1(String[] one, int[] two) {
}
public void fpTooManyArgs(int i, char j, long k, String[] moo) {
}
public void fpNotAtEnd(String[] foo, int bar) {
}
public void fpAlreadyVarArg(String... darnit) {
}
public void fpSimilarVarArg(String info, String... data) {
}
public void fpBytes(byte[] data) {
}
public void fpPass(char[] data) {
}
@Override
public E[] toArray(E[] a) {
return null;
}
}