Uses of Class
hudson.console.ConsoleAnnotator
-
Packages that use ConsoleAnnotator Package Description hudson.console Beef up the plain text console output by adding HTML markup.hudson.tasks._maven -
-
Uses of ConsoleAnnotator in hudson.console
Methods in hudson.console that return ConsoleAnnotator Modifier and Type Method Description abstract ConsoleAnnotator<T>
ConsoleAnnotator. annotate(T context, MarkupText text)
Annotates one line.abstract ConsoleAnnotator
ConsoleNote. annotate(T context, MarkupText text, int charPos)
When the line of a console output that this annotation is attached is read by someone, a newConsoleNote
is de-serialized and this method is invoked to annotate that line.ConsoleAnnotator
ExpandableDetailsNote. annotate(Object context, MarkupText text, int charPos)
ConsoleAnnotator
HyperlinkNote. annotate(Object context, MarkupText text, int charPos)
static <T> ConsoleAnnotator<T>
ConsoleAnnotator. cast(ConsoleAnnotator<? super T> a)
Cast operation that restricts T.static <T> ConsoleAnnotator<T>
ConsoleAnnotator. combine(Collection<? extends ConsoleAnnotator<? super T>> all)
Bundles all the givenConsoleAnnotator
into a single annotator.ConsoleAnnotator<T>
ConsoleAnnotationOutputStream. getConsoleAnnotator()
static <T> ConsoleAnnotator<T>
ConsoleAnnotator. initial(T context)
Returns the allConsoleAnnotator
s for the given context type aggregated into a single annotator.abstract ConsoleAnnotator<T>
ConsoleAnnotatorFactory. newInstance(T context)
Called when a console output page is requested to create a statefulConsoleAnnotator
.ConsoleAnnotator
UrlAnnotator. newInstance(Object context)
Methods in hudson.console that return types with arguments of type ConsoleAnnotator Modifier and Type Method Description static <T> List<ConsoleAnnotator<T>>
ConsoleAnnotator. _for(T context)
List all the console annotators that can work for the specified context type.Methods in hudson.console with parameters of type ConsoleAnnotator Modifier and Type Method Description static <T> ConsoleAnnotator<T>
ConsoleAnnotator. cast(ConsoleAnnotator<? super T> a)
Cast operation that restricts T.Method parameters in hudson.console with type arguments of type ConsoleAnnotator Modifier and Type Method Description static <T> ConsoleAnnotator<T>
ConsoleAnnotator. combine(Collection<? extends ConsoleAnnotator<? super T>> all)
Bundles all the givenConsoleAnnotator
into a single annotator.Constructors in hudson.console with parameters of type ConsoleAnnotator Constructor Description ConsoleAnnotationOutputStream(Writer out, ConsoleAnnotator<? super T> ann, T context, Charset charset)
-
Uses of ConsoleAnnotator in hudson.tasks._maven
Methods in hudson.tasks._maven that return ConsoleAnnotator Modifier and Type Method Description ConsoleAnnotator
Maven3MojoNote. annotate(Object context, MarkupText text, int charPos)
ConsoleAnnotator
MavenErrorNote. annotate(Object context, MarkupText text, int charPos)
ConsoleAnnotator
MavenMojoNote. annotate(Object context, MarkupText text, int charPos)
ConsoleAnnotator
MavenWarningNote. annotate(Object context, MarkupText text, int charPos)
-