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

src.samples.java.ex.CAAL_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.Arrays;
import java.util.List;

public class CAAL_Sample {

    public void testCAAL(int[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(char[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(byte[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(short[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(long[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(float[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(double[] v) {
        List l = Arrays.asList(v);
    }

    public void testCAAL(boolean[] v) {
        List l = Arrays.asList(v);
    }

    public void testFPTwoArrays(char[] a, char[] b) {
        List l = Arrays.asList(a, b);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy