Package nl2sql.parserQuestion

Examples of nl2sql.parserQuestion.LinguisticComponent


            inputQuestion = request.getParameter("manualInput");
        } else {
            inputQuestion = request.getParameter("selectInput");
        }
        inputQuestion = inputQuestion.replace(",", ".");
        LinguisticComponent chunk = null;
        String col_data = null;
        try {
            chunk = new LinguisticComponent(Directory.directoryLinguisticComponent);
            chunk.parseQuestion(inputQuestion, col_data);
        } catch (Exception ex) {
            Logger.getLogger(Run.class.getName()).log(Level.SEVERE, null, ex);
        }

        String status = null;
View Full Code Here

TOP

Related Classes of nl2sql.parserQuestion.LinguisticComponent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.