Package com.rs.seagull.emulator.api
Interface Cell
-
- All Superinterfaces:
Attributed
public interface Cell extends Attributed
A Cell represents one location on the screen.- Version:
- $Id$
- Author:
- MRomijn
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Cell.CellType
An enumeration of possible Cell types.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description char
getText()
Get the text of this Cell.Cell.CellType
getType()
Get the type of this cell.-
Methods inherited from interface com.rs.seagull.emulator.api.Attributed
getBackgroundColor, getForegroundColor, getHorizontalScale, getVerticalScale, hasAttribute, isAvailable, isBlink, isBold, isBright, isColumnSeparator, isDim, isInvisible, isReverse, isUnderline, isWriteProtect
-
-
-
-
Method Detail
-
getText
char getText()
Get the text of this Cell. The text of a Cell is achar
.- Returns:
- the text
-
getType
Cell.CellType getType()
Get the type of this cell. The type of a Cell is aCell.CellType
.- Returns:
- the type
-
-