Package com.rs.seagull.emulator.api
Interface Cursor
- All Superinterfaces:
- BareCursor
A Cursor represents the current "type-in" point on the screen.
- Version:
- $Id$
- 
Nested Class SummaryNested classes/interfaces inherited from interface com.rs.seagull.emulator.api.BareCursorBareCursor.CursorType
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns true if the cursor is positioned inside the named field.booleanReturns true if the cursor is positioned inside the index'th part of the multi-part named field.voidsetPosition(String fieldName) Set the cursor position to the beginning of the named field.voidsetPosition(String fieldName, int index) Set the cursor position to the beginning of the index'th part of the multi-part named field.Methods inherited from interface com.rs.seagull.emulator.api.BareCursorgetPosition, getType, isVisible, setPosition, setPosition, setPosition
- 
Method Details- 
setPositionSet the cursor position to the beginning of the named field.- Parameters:
- fieldName- the field into which the cursor should be positioned.
 
- 
setPositionSet the cursor position to the beginning of the index'th part of the multi-part named field.- Parameters:
- fieldName- the field into which the cursor should be positioned.
- index- the zero-based element of the multi-part field
 
- 
isInFieldReturns true if the cursor is positioned inside the named field.- Parameters:
- fieldName- the field to check
- Returns:
- true if the cursor is in the field.
 
- 
isInFieldReturns true if the cursor is positioned inside the index'th part of the multi-part named field.- Parameters:
- fieldName- the field to check
- index- the zero-based element of the multi-part field
- Returns:
- true if the cursor is in the field.
 
 
-