Merge branch 'next' into image-management
[Sone.git] / src / main / java / net / pterodactylus / sone / text / ParserContext.java
1
2 package net.pterodactylus.sone.text;
3
4 /**
5  * Context for the {@link Parser}. This interface needs to be implemented by
6  * {@link Parser}s that need to provide more information than just the text to
7  * parse to {@link Parser#parse(ParserContext, java.io.Reader)}.
8  *
9  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
10  */
11 public interface ParserContext {
12
13         /* nothing to see. */
14
15 }