org.semanticweb.owlapi.functional.parser.Provider Maven / Gradle / Ivy
/* Generated By:JavaCC: Do not edit this line. Provider.java Version 7.0 */
/* JavaCCOptions:KEEP_LINE_COLUMN=true */
package org.semanticweb.owlapi.functional.parser;
import java.io.IOException;
@SuppressWarnings("all")
interface Provider {
/**
* Reads characters into an array
* @param buffer Destination buffer
* @param offset Offset at which to start storing characters
* @param length The maximum possible number of characters to read
* @return The number of characters read, or -1 if all read
* @exception IOException
*/
int read(char buffer[], int offset, int length) throws IOException;
/**
* Closes the stream and releases any system resources associated with
* it.
* @exception IOException
*/
void close() throws IOException;
}
/* JavaCC - OriginalChecksum=70d2a4e8f9f5b18fc2a235ddac8b02db (do not edit this line) */