Uses of Interface
org.eclipse.jface.text.IAutoEditStrategy
-
Packages that use IAutoEditStrategy Package Description org.eclipse.jface.text Provides a framework for creating and manipulating text documents.org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those. -
-
Uses of IAutoEditStrategy in org.eclipse.jface.text
Subinterfaces of IAutoEditStrategy in org.eclipse.jface.text Modifier and Type Interface Description interfaceIAutoIndentStrategyDeprecated.since 3.0, useIAutoEditStrategydirectlyClasses in org.eclipse.jface.text that implement IAutoEditStrategy Modifier and Type Class Description classDefaultAutoIndentStrategyDeprecated.since 3.1 useDefaultIndentLineAutoEditStrategyinsteadclassDefaultIndentLineAutoEditStrategyThis strategy always copies the indentation of the previous line.classTabsToSpacesConverterAuto edit strategy that converts tabs into spaces.Fields in org.eclipse.jface.text with type parameters of type IAutoEditStrategy Modifier and Type Field Description protected Map<String,List<IAutoEditStrategy>>TextViewer. fAutoIndentStrategiesThe text viewer's auto indent strategiesMethods in org.eclipse.jface.text with parameters of type IAutoEditStrategy Modifier and Type Method Description voidITextViewerExtension2. prependAutoEditStrategy(IAutoEditStrategy strategy, String contentType)Prepends the given auto edit strategy to the existing list of strategies for the specified content type.voidTextViewer. prependAutoEditStrategy(IAutoEditStrategy strategy, String contentType)voidITextViewerExtension2. removeAutoEditStrategy(IAutoEditStrategy strategy, String contentType)Removes the first occurrence of the given auto edit strategy in the list of strategies registered under the specified content type.voidTextViewer. removeAutoEditStrategy(IAutoEditStrategy strategy, String contentType)protected voidTextViewer. setAutoEditStrategies(IAutoEditStrategy[] strategies, String contentType)Sets the given edit strategy as the only strategy for the given content type.voidITextViewerExtension7. setTabsToSpacesConverter(IAutoEditStrategy converter)Sets an auto edit strategy can converts tabs to spaces.voidTextViewer. setTabsToSpacesConverter(IAutoEditStrategy converter) -
Uses of IAutoEditStrategy in org.eclipse.jface.text.source
Methods in org.eclipse.jface.text.source that return IAutoEditStrategy Modifier and Type Method Description IAutoEditStrategy[]SourceViewerConfiguration. getAutoEditStrategies(ISourceViewer sourceViewer, String contentType)Returns the auto edit strategies ready to be used with the given source viewer when manipulating text of the given content type.
-