X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FParser.java;h=9c5a2dafea73d706b7d7c82ad2fd81e83bc13ec8;hb=7ec1d08c8eb6ee292dbb34df6c00d9828121aad3;hp=ccec36a74e37e6f73c6d1b7698b56cdc226a46a8;hpb=31b4f988a9c7cc2b36006e3249e3ba644beb99f6;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/text/Parser.java b/src/main/java/net/pterodactylus/sone/text/Parser.java index ccec36a..9c5a2da 100644 --- a/src/main/java/net/pterodactylus/sone/text/Parser.java +++ b/src/main/java/net/pterodactylus/sone/text/Parser.java @@ -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 * @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; }