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

src.samples.java.ex.SGSU_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.

The newest version!
package ex;

public class SGSU_Sample {
    private SGSU_Sample foo;
    private SGSU_Sample foo2;

    public void testSGSULocals(SGSU_Sample s1, SGSU_Sample s2) {
        s1.setSGSU(s1.getSGSU());
    }

    public void testSGSUFields() {
        foo.setSGSU(foo.getSGSU());
    }

    public void fpSGSUFields() {
        foo.setSGSU(foo2.getSGSU());
    }

    public void setSGSU(SGSU_Sample f) {
        foo = f;
    }

    public SGSU_Sample getSGSU() {
        return foo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy