Java 类com.intellij.openapi.editor.impl.EditorTextRepresentationHelper 实例源码

项目:tools-idea    文件:EditorPosition.java   
EditorPosition(@NotNull LogicalPosition logical,
               @NotNull VisualPosition visual,
               int offset,
               @NotNull Editor editor,
               @NotNull EditorTextRepresentationHelper representationHelper)
{
  myEditor = editor;
  myRepresentationHelper = representationHelper;
  logicalLine = logical.line;
  logicalColumn = logical.column;
  softWrapLinesBefore = logical.softWrapLinesBeforeCurrentLogicalLine;
  softWrapLinesCurrent = logical.softWrapLinesOnCurrentLogicalLine;
  softWrapColumnDiff = logical.softWrapColumnDiff;
  foldedLines = logical.foldedLines;
  foldingColumnDiff = logical.foldingColumnDiff;

  visualLine = visual.line;
  visualColumn = visual.column;

  this.offset = offset;
}
项目:tools-idea    文件:EditorPosition.java   
EditorPosition(@NotNull LogicalPosition logical,
               int offset,
               @NotNull Editor editor,
               @NotNull EditorTextRepresentationHelper representationHelper)
{
  this(logical, logical.toVisualPosition(), offset, editor, representationHelper);
}
项目:tools-idea    文件:FoldingData.java   
FoldingData(@NotNull FoldRegion foldRegion, int startX, @NotNull EditorTextRepresentationHelper representationHelper,
            @NotNull Editor editor) 
{
  myFoldRegion = foldRegion;
  this.startX = startX;
  myRepresentationHelper = representationHelper;
  myEditor = editor;
}
项目:tools-idea    文件:LogicalToVisualMappingStrategy.java   
LogicalToVisualMappingStrategy(@NotNull LogicalPosition logical, @NotNull Editor editor, @NotNull SoftWrapsStorage storage,
                               @NotNull EditorTextRepresentationHelper representationHelper, @NotNull List<CacheEntry> cache)
  throws IllegalStateException
{
  super(editor, storage, cache, representationHelper);
  myTargetLogical = logical;
}
项目:tools-idea    文件:AbstractMappingStrategy.java   
AbstractMappingStrategy(@NotNull Editor editor,
                        @NotNull SoftWrapsStorage storage,
                        @NotNull List<CacheEntry> cache,
                        @NotNull EditorTextRepresentationHelper representationHelper)
{
  myEditor = editor;
  myStorage = storage;
  myCache = cache;
  myRepresentationHelper = representationHelper;
}
项目:tools-idea    文件:CachingSoftWrapDataMapper.java   
public CachingSoftWrapDataMapper(@NotNull EditorEx editor, @NotNull SoftWrapsStorage storage,
                                 @NotNull EditorTextRepresentationHelper representationHelper)
{
  myEditor = editor;
  myStorage = storage;
  myRepresentationHelper = representationHelper;
  mySearchKey = new CacheEntry(0, editor, representationHelper);

  myOffsetToLogicalStrategy = new OffsetToLogicalCalculationStrategy(editor, storage, myCache, representationHelper);
  myVisualToLogicalStrategy = new VisualToLogicalCalculationStrategy(editor, storage, myCache, representationHelper);
}
项目:intellij-ce-playground    文件:SoftWrapModelWindow.java   
@Override
public EditorTextRepresentationHelper getEditorTextRepresentationHelper() {
  throw new UnsupportedOperationException();
}
项目:tools-idea    文件:EditorPosition.java   
EditorPosition(@NotNull Editor editor, @NotNull EditorTextRepresentationHelper representationHelper) {
  myEditor = editor;
  myRepresentationHelper = representationHelper;
}
项目:tools-idea    文件:CacheEntry.java   
CacheEntry(int visualLine, @NotNull Editor editor, @NotNull EditorTextRepresentationHelper representationHelper) {
  this.visualLine = visualLine;
  myEditor = editor;
  myRepresentationHelper = representationHelper;
}
项目:tools-idea    文件:VisualToLogicalCalculationStrategy.java   
VisualToLogicalCalculationStrategy(@NotNull Editor editor, @NotNull SoftWrapsStorage storage, @NotNull List<CacheEntry> cache, 
                                   @NotNull EditorTextRepresentationHelper representationHelper) 
{
  super(editor, storage, cache, representationHelper);
  mySearchKey = new CacheEntry(0, editor, representationHelper);
}
项目:tools-idea    文件:OffsetToLogicalCalculationStrategy.java   
OffsetToLogicalCalculationStrategy(@NotNull Editor editor, @NotNull SoftWrapsStorage storage, @NotNull List<CacheEntry> cache,
                                   @NotNull EditorTextRepresentationHelper representationHelper) 
{
  super(editor, storage, cache, representationHelper);
}
项目:consulo    文件:SoftWrapModelWindow.java   
@Override
public EditorTextRepresentationHelper getEditorTextRepresentationHelper() {
  throw new UnsupportedOperationException();
}
项目:intellij-ce-playground    文件:SoftWrapModelEx.java   
EditorTextRepresentationHelper getEditorTextRepresentationHelper();
项目:consulo    文件:SoftWrapModelEx.java   
EditorTextRepresentationHelper getEditorTextRepresentationHelper();