/**@class android.inputmethodservice.InputMethodService.Insets
@extends java.lang.Object

 Information about where interesting parts of the input method UI appear.
*/
var Insets = {

/** This is the top part of the UI that is the main content.  It is
 used to determine the basic space needed, to resize/pan the
 application behind.  It is assumed that this inset does not
 change very much, since any change will cause a full resize/pan
 of the application behind.  This value is relative to the top edge
 of the input method window.
*/
contentTopInsets : "null",
/** This is the top part of the UI that is visibly covering the
 application behind it.  This provides finer-grained control over
 visibility, allowing you to change it relatively frequently (such
 as hiding or showing candidates) without disrupting the underlying
 UI too much.  For example, this will never resize the application
 UI, will only pan if needed to make the current focus visible, and
 will not aggressively move the pan position when this changes unless
 needed to make the focus visible.  This value is relative to the top edge
 of the input method window.
*/
visibleTopInsets : "null",
/** This is the region of the UI that is touchable.  It is used when
 {@link #touchableInsets} is set to {@link #TOUCHABLE_INSETS_REGION}.
 The region should be specified relative to the origin of the window frame.
*/
touchableRegion : "null",
/** Option for {@link #touchableInsets}: the entire window frame
 can be touched.
*/
TOUCHABLE_INSETS_FRAME : "0",
/** Option for {@link #touchableInsets}: the area inside of
 the content insets can be touched.
*/
TOUCHABLE_INSETS_CONTENT : "1",
/** Option for {@link #touchableInsets}: the area inside of
 the visible insets can be touched.
*/
TOUCHABLE_INSETS_VISIBLE : "2",
/** Option for {@link #touchableInsets}: the region specified by
 {@link #touchableRegion} can be touched.
*/
TOUCHABLE_INSETS_REGION : "3",
/** Determine which area of the window is touchable by the user.  May
 be one of: {@link #TOUCHABLE_INSETS_FRAME},
 {@link #TOUCHABLE_INSETS_CONTENT}, {@link #TOUCHABLE_INSETS_VISIBLE},
 or {@link #TOUCHABLE_INSETS_REGION}.
*/
touchableInsets : "null",

};