Package org.evolizer.versioncontrol.cvs.importer.parser.helper_entities

Examples of org.evolizer.versioncontrol.cvs.importer.parser.helper_entities.LogEntry


     *            the line
     */
    private void checkRCSFile(String line) {
        Matcher matcher = RegexLibrary.RCS_FILE.matcher(line);
        if (matcher.matches()) {
            fCurrentLogEntry = new LogEntry();
            fCurrentLogEntry.setRcsFile(matcher.group(1));
        }
    }
View Full Code Here

TOP

Related Classes of org.evolizer.versioncontrol.cvs.importer.parser.helper_entities.LogEntry

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.