X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FParser.java;h=f5f8f1bc0da45f1d61263c9109731ad72ec7afac;hp=ccec36a74e37e6f73c6d1b7698b56cdc226a46a8;hb=419098bcd6215125408b29e60bd888e60979d37b;hpb=e8411efc4eaff6418cad496eb34fd7bc260eb9cd diff --git a/src/main/java/net/pterodactylus/sone/text/Parser.java b/src/main/java/net/pterodactylus/sone/text/Parser.java index ccec36a..f5f8f1b 100644 --- a/src/main/java/net/pterodactylus/sone/text/Parser.java +++ b/src/main/java/net/pterodactylus/sone/text/Parser.java @@ -1,5 +1,5 @@ /* - * Sone - Parser.java - Copyright © 2010 David Roden + * Sone - Parser.java - Copyright © 2010–2015 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,19 +24,23 @@ import java.io.Reader; * Interface for parsers that can create {@link Part}s from a text source * (usually a {@link Reader}). * + * @param + * The type of the parser context * @author David ‘Bombe’ Roden */ -public interface Parser { +public interface Parser { /** - * Create a {@link Part} from the given text source. + * Create one or more {@link Part}s from the given text source. * + * @param context + * The parser context (may be {@code null}) * @param source * The text source - * @return The parsed part + * @return The parsed parts * @throws IOException * if an I/O error occurs */ - public Part parse(Reader source) throws IOException; + public Iterable parse(C context, Reader source) throws IOException; }