Package com.salesforce.ide.ui.editors.apex.assistance

Examples of com.salesforce.ide.ui.editors.apex.assistance.ApexAutoIndentStrategy


    }

    @Override
    public IAutoEditStrategy[] getAutoEditStrategies(ISourceViewer sourceViewer, String contentType) {
        IAutoEditStrategy strategy =
                (IDocument.DEFAULT_CONTENT_TYPE.equals(contentType) ? new ApexAutoIndentStrategy()
                        : new DefaultIndentLineAutoEditStrategy());

        return new IAutoEditStrategy[] { strategy };
    }
View Full Code Here

TOP

Related Classes of com.salesforce.ide.ui.editors.apex.assistance.ApexAutoIndentStrategy

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.