All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sk.uniq.protobuf.parser.ProtoParser Maven / Gradle / Ivy

/* 
 * Copyright 2016 Jakub Herkel.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package sk.uniq.protobuf.parser;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;

/**
 *
 * @author jherkel
 */
/**
 *
 * @author jherkel
 */
public interface ProtoParser {

    /**
     *
     * @param listener
     */
    void addListener(ProtoErrorListener listener);

    /**
     *
     * @return
     */
    ProtoParserOptions getParserOptions();

    /**
     *
     * @param inputStream
     * @return
     * @throws IOException
     */
    ProtoParserResult parse(InputStream inputStream) throws IOException;

    /**
     *
     * @param file the file to be opened for reading
     * @return
     * @throws IOException
     */
    ProtoParserResult parse(File file) throws IOException;

    /**
     *
     * @param text
     * @return
     */
    ProtoParserResult parse(String text);

    /**
     *
     */
    void removeAllListeners();

    /**
     *
     * @param listener
     */
    void removeListener(ProtoErrorListener listener);
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy