All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.samples.java.ex.UVA_Sample Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.6.8
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy