Package hudson.console

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

Related Classes of hudson.console.HyperlinkNote

Copyright © 2018 www.massapicom. 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.