Package com.hp.lft.sdk.te
Class ScreenDescription.Init<T extends ScreenDescription.Init<T>>
java.lang.Object
com.hp.lft.sdk.DescriptionBase.Init<T>
com.hp.lft.sdk.te.ScreenDescription.Init<T>
- Direct Known Subclasses:
- ScreenDescription.Builder
- Enclosing class:
- ScreenDescription
protected abstract static class ScreenDescription.Init<T extends ScreenDescription.Init<T>>
extends DescriptionBase.Init<T>
Helper class for ScreenDescription.Builder.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbuild()Returns the built description instance (builder pattern).cursorPosition(Position position) Initializes the position of the Terminal Emulator screen.cursorPosition(PositionProperty position) Initializes the position of the Terminal Emulator screen.cursorPosition(Integer row, Integer column) Initializes the position of the Terminal Emulator screen.Initializes a value id of the screen.inputFieldCount(Integer inputFieldCount) Initializes the number of input fields on the emulator screen.label(StringProperty label) Initializes the label attribute for TeScreen.Initializes the label attribute for TeScreen.protectedFieldCount(Integer protectedFieldCount) Initializes the number of protected fields on the emulator screen.Initializes the size of the Terminal Emulator screen.size(SizeProperty size) Initializes the size of the Terminal Emulator screen.Initializes the size of the Terminal Emulator screen.Methods inherited from class com.hp.lft.sdk.DescriptionBase.Initindex, objectProperties, self, vri, vri
- 
Constructor Details- 
Initprotected Init()
 
- 
- 
Method Details- 
buildDescription copied from class:DescriptionBase.InitReturns the built description instance (builder pattern).- Overrides:
- buildin class- DescriptionBase.Init<T extends ScreenDescription.Init<T>>
- Returns:
- The built description instance (builder pattern).
 
- 
sizeInitializes the size of the Terminal Emulator screen.- Parameters:
- size- the size of the Terminal Emulator screen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
sizeInitializes the size of the Terminal Emulator screen.- Parameters:
- rowCount- the rowCount of the Terminal Emulator screen.
- columnCount- the columnCount of the Terminal Emulator screen.
- Returns:
- the description instance with the update state (builder pattern)
 
- 
sizeInitializes the size of the Terminal Emulator screen.- Parameters:
- size- a SizeProperty representing the size of the Terminal Emulator screen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
cursorPositionInitializes the position of the Terminal Emulator screen.- Parameters:
- position- the position of the Terminal Emulator screen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
cursorPositionInitializes the position of the Terminal Emulator screen.- Parameters:
- row- the row of the Terminal Emulator screen.
- column- the column of the Terminal Emulator screen.
- Returns:
- the description instance with the update state (builder pattern)
 
- 
cursorPositionInitializes the position of the Terminal Emulator screen.- Parameters:
- position- a PositionProperty representing the position of the Terminal Emulator screen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
labelInitializes the label attribute for TeScreen.- Parameters:
- label- the label attribute for TeScreen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
labelInitializes the label attribute for TeScreen.- Parameters:
- label- a StringProperty(or RegExpProperty) representing the label attribute for TeScreen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
inputFieldCountInitializes the number of input fields on the emulator screen.- Parameters:
- inputFieldCount- the number of input fields on the emulator screen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
idInitializes a value id of the screen.- Parameters:
- id- the value id of the screen.
- Returns:
- the description instance with the update state (builder pattern).
 
- 
protectedFieldCountInitializes the number of protected fields on the emulator screen.- Parameters:
- protectedFieldCount- the number of protected fields on the emulator screen.
- Returns:
- the description instance with the update state (builder pattern).
 
 
-