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

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

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspTagException;
import javax.servlet.jsp.tagext.TagSupport;

@SuppressWarnings("all")
public class NRTL_Sample extends TagSupport {
    private String sample;
    private String sample2;

    public void setSample(String s) {
        sample = s;
    }

    @Override
    public int doStartTag() throws JspException {
        try {
            sample += Math.random();
            sample2 += sample;
            pageContext.getOut().print(sample2);
        } catch (Exception ex) {
            throw new JspTagException("NRTL_Sample: " + ex.getMessage());
        }
        return SKIP_BODY;
    }

    public void setSample2(String s) {
        sample2 = s;
    }

    @Override
    public int doEndTag() {
        return EVAL_PAGE;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy