java.lang.Object
com.google.gwt.core.client.JavaScriptObject
cn.mapway.document.ui.client.component.ace.AceRange

public final class AceRange extends com.google.gwt.core.client.JavaScriptObject
Represents an Ace Range Object.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static AceRange
    create(int startRow, int startColumn, int endRow, int endColumn)
     
    void
    Detaches both, start and end from this AceRange.
    void
    Detaches the end achor from this AceRange.
    void
    Detaches the start anchor from this AceRange.

    Methods inherited from class com.google.gwt.core.client.JavaScriptObject

    cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • AceRange

      protected AceRange()
  • Method Details

    • create

      public static AceRange create(int startRow, int startColumn, int endRow, int endColumn)
    • detach

      public void detach()
      Detaches both, start and end from this AceRange.
    • detachStart

      public void detachStart()
      Detaches the start anchor from this AceRange.
    • detachEnd

      public void detachEnd()
      Detaches the end achor from this AceRange.