Examples of HyperlinkNote


Examples of hudson.console.HyperlinkNote

* Partial default implementation of {@link TaskListener}
* @author Kohsuke Kawaguchi
*/
public abstract class AbstractTaskListener implements TaskListener {
    public void hyperlink(String url, String text) throws IOException {
        annotate(new HyperlinkNote(url,text.length()));
        getLogger().print(text);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.