Package org.zanata.adapter.glossary

Examples of org.zanata.adapter.glossary.GlossaryCSVReader


        }
    }

    private List<Glossary> parseCsvFile(InputStream fileContents,
            List<String> commentsColumn) throws IOException {
        GlossaryCSVReader csvReader =
                new GlossaryCSVReader(commentsColumn, BATCH_SIZE);
        return csvReader.extractGlossary(new InputStreamReader(fileContents));
    }
View Full Code Here

TOP

Related Classes of org.zanata.adapter.glossary.GlossaryCSVReader

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.