1 16 package com.google.gwt.user.client.ui.impl; 17 18 import com.google.gwt.user.client.Element; 19 20 23 public class TextBoxImpl { 24 25 public native int getCursorPos(Element elem) ; 33 34 public native int getSelectionLength(Element elem) ; 42 43 public int getTextAreaCursorPos(Element elem) { 44 return getCursorPos(elem); 45 } 46 47 public native void setSelectionRange(Element elem, int pos, int length) ; 50 } 51 | Popular Tags |