Package org.apache.directory.studio.ldifparser.model

Examples of org.apache.directory.studio.ldifparser.model.LdifInvalidPart


    private boolean checkAndParseOther( LdifFile model )
    {
        LdifToken token = this.scanner.matchOther();
        if ( token != null )
        {
            LdifInvalidPart unknownLine = new LdifInvalidPart( token.getOffset(), getValueOrNull( token ) );
            LdifInvalidContainer otherContainer = new LdifInvalidContainer( unknownLine );
            model.addContainer( otherContainer );
            return true;
        }
        else
View Full Code Here


    private void cleanupLine( LdifContainer container )
    {
        LdifToken errorToken = this.scanner.matchCleanupLine();
        if ( errorToken != null )
        {
            container.addInvalid( new LdifInvalidPart( errorToken.getOffset(), errorToken.getValue() ) );
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.studio.ldifparser.model.LdifInvalidPart

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.