Package org.erlide.ui.editors.erl.autoedit

Examples of org.erlide.ui.editors.erl.autoedit.AutoIndentStrategy


    @Override
    public IAutoEditStrategy[] getAutoEditStrategies(final ISourceViewer sourceViewer,
            final String contentType) {
        if (contentType.equals(IDocument.DEFAULT_CONTENT_TYPE)) {
            return new IAutoEditStrategy[] { new AutoIndentStrategy(editor) };
        }
        return NO_AUTOEDIT;
    }
View Full Code Here

TOP

Related Classes of org.erlide.ui.editors.erl.autoedit.AutoIndentStrategy

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.