From: David ‘Bombe’ Roden Date: Mon, 9 Mar 2009 20:04:44 +0000 (+0100) Subject: Enhance parser listener with title attributes for links. X-Git-Url: https://git.pterodactylus.net/?p=arachne.git;a=commitdiff_plain;h=bab2b5ed5424c861129c38ca47ec64aa4d430779 Enhance parser listener with title attributes for links. --- diff --git a/src/net/pterodactylus/arachne/parser/ParserListener.java b/src/net/pterodactylus/arachne/parser/ParserListener.java index de81233..2bcc220 100644 --- a/src/net/pterodactylus/arachne/parser/ParserListener.java +++ b/src/net/pterodactylus/arachne/parser/ParserListener.java @@ -31,9 +31,13 @@ public interface ParserListener extends EventListener { * * @param inputStream * The parsed input stream - * @param link - * The identified link + * @param linkTarget + * The target URL of the link + * @param linkTitle + * The title attribute of the link + * @param linkText + * The text of the link */ - public void parsedLink(InputStream inputStream, String link); + public void parsedLink(InputStream inputStream, String linkTarget, String linkTitle, String linkText); }