Module com.io7m.changelog.xml.api
Package com.io7m.changelog.xml.api
Interface CXMLChangelogParserProviderType
-
- All Superinterfaces:
CChangelogParserProviderType
- All Known Implementing Classes:
CXMLChangelogParsers
public interface CXMLChangelogParserProviderType extends CChangelogParserProviderType
The type of parser providers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CXMLChangelogParserTypecreate(URI uri, InputStream stream, Consumer<CParseError> receiver)Create a new parser.
-
-
-
Method Detail
-
create
CXMLChangelogParserType create(URI uri, InputStream stream, Consumer<CParseError> receiver) throws IOException
Description copied from interface:CChangelogParserProviderTypeCreate a new parser.- Specified by:
createin interfaceCChangelogParserProviderType- Parameters:
uri- The URI of the stream, for diagnostic messagesstream- The streamreceiver- A receiver for errors- Returns:
- A new parser
- Throws:
IOException- On I/O errors
-
-