X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Farachne%2Fparser%2FParserListener.java;h=2bcc2209ad42f668dd1e33aa177bb19591290879;hb=bab2b5ed5424c861129c38ca47ec64aa4d430779;hp=de812335f3ae95eef865c3515d7eee83f4ea6e8c;hpb=b96150ff4c48c55a027dd68a680b2ec112108891;p=arachne.git 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); }