Uses of Interface
org.eclipse.jface.text.IDocumentPartitioner
-
Packages that use IDocumentPartitioner Package Description org.eclipse.compare.contentmergeviewer Support for compare and merge viewers which show the content side-by-side.org.eclipse.compare.structuremergeviewer Provides support for finding and displaying the differences between hierarchically structured data.org.eclipse.jface.text Provides a framework for creating and manipulating text documents.org.eclipse.jface.text.rules Provides a framework for rule based text scanning and uses the framework to provide rule-driven default implementations ofIPresentationDamager,IPresentationRepairerandIDocumentPartitioner.org.eclipse.ui.console Application programming interfaces for interaction with the Eclipse console. -
-
Uses of IDocumentPartitioner in org.eclipse.compare.contentmergeviewer
Methods in org.eclipse.compare.contentmergeviewer that return IDocumentPartitioner Modifier and Type Method Description protected IDocumentPartitionerTextMergeViewer. getDocumentPartitioner()Returns a document partitioner which is suitable for the underlying content type. -
Uses of IDocumentPartitioner in org.eclipse.compare.structuremergeviewer
Methods in org.eclipse.compare.structuremergeviewer that return IDocumentPartitioner Modifier and Type Method Description protected IDocumentPartitionerStructureCreator. getDocumentPartitioner()Returns the partitioner to be associated with the document ornullis partitioning is not needed or if the subclass overrodeStructureCreator.setupDocument(IDocument)directly. -
Uses of IDocumentPartitioner in org.eclipse.jface.text
Methods in org.eclipse.jface.text that return IDocumentPartitioner Modifier and Type Method Description IDocumentPartitionerAbstractDocument. getDocumentPartitioner()IDocumentPartitionerAbstractDocument. getDocumentPartitioner(String partitioning)IDocumentPartitionerIDocument. getDocumentPartitioner()Returns this document's partitioner.IDocumentPartitionerIDocumentExtension3. getDocumentPartitioner(String partitioning)Returns the partitioner for the given partitioning ornullif no partitioner is registered.Methods in org.eclipse.jface.text that return types with arguments of type IDocumentPartitioner Modifier and Type Method Description static Map<String,IDocumentPartitioner>TextUtilities. removeDocumentPartitioners(IDocument document)Removes all connected document partitioners from the given document and stores them under their partitioning name in a map.Methods in org.eclipse.jface.text with parameters of type IDocumentPartitioner Modifier and Type Method Description protected voidAbstractDocument. checkStateOfPartitioner(IDocumentPartitioner partitioner, String partitioning)Checks the state for the given partitioner and stops the active rewrite session.voidAbstractDocument. setDocumentPartitioner(String partitioning, IDocumentPartitioner partitioner)voidAbstractDocument. setDocumentPartitioner(IDocumentPartitioner partitioner)voidIDocument. setDocumentPartitioner(IDocumentPartitioner partitioner)Sets this document's partitioner.voidIDocumentExtension3. setDocumentPartitioner(String partitioning, IDocumentPartitioner partitioner)Sets this document's partitioner.Method parameters in org.eclipse.jface.text with type arguments of type IDocumentPartitioner Modifier and Type Method Description static voidTextUtilities. addDocumentPartitioners(IDocument document, Map<String,? extends IDocumentPartitioner> partitioners)Connects the given document with all document partitioners stored in the given map under their partitioning name. -
Uses of IDocumentPartitioner in org.eclipse.jface.text.rules
Classes in org.eclipse.jface.text.rules that implement IDocumentPartitioner Modifier and Type Class Description classDefaultPartitionerDeprecated.As of 3.1, replaced byFastPartitionerinsteadclassFastPartitionerA standard implementation of a document partitioner.classRuleBasedPartitionerDeprecated.useFastPartitionerinstead -
Uses of IDocumentPartitioner in org.eclipse.ui.console
Subinterfaces of IDocumentPartitioner in org.eclipse.ui.console Modifier and Type Interface Description interfaceIConsoleDocumentPartitionerA document partitioner for a text console.
-