Package com.iizix.term.prop
Class TerminalModelSettings
- java.lang.Object
- com.iizix.term.prop.TerminalModelSettings
public class TerminalModelSettings extends java.lang.Object
The Terminal Model Settings property container.
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAME
The name.
Constructor Summary
Constructors Constructor Description TerminalModelSettings(ModuleProjectSettings projectSettings)
Creates the terminal settings from scratch or from existing data.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
doStopAtFirstMatch()
Check for stop search of matching screen at first match.boolean
setBinaryMatchMethod(boolean on)
Sets the use of "binary" hash match method flag.boolean
setPopupWindowRecognition(boolean on)
Sets the pop-up window recognition flag.boolean
setStopAtFirstMatch(boolean on)
Check for stop search of matching screen at first match.boolean
useBinaryMatchMethod()
Checks for use of "binary" hash match method.boolean
usePopupWindowRecognition()
Checks for use of pop-up window recognition.
Field Detail
NAME
public static final java.lang.String NAME
The name.- See Also:
- Constant Field Values
Constructor Detail
TerminalModelSettings
public TerminalModelSettings(ModuleProjectSettings projectSettings) throws PropException
Creates the terminal settings from scratch or from existing data.- Parameters:
projectSettings
- The project settings.- Throws:
PropException
- For failures.
Method Detail
usePopupWindowRecognition
public boolean usePopupWindowRecognition()
Checks for use of pop-up window recognition.- Returns:
- true to use pop-up windows.
setPopupWindowRecognition
public boolean setPopupWindowRecognition(boolean on)
Sets the pop-up window recognition flag.- Parameters:
on
- The pop-up window recognition flag.- Returns:
- true when this property container has been changed, false otherwise (or for error).
useBinaryMatchMethod
public boolean useBinaryMatchMethod()
Checks for use of "binary" hash match method.- Returns:
- true to hash string ID's for fast recognition.
setBinaryMatchMethod
public boolean setBinaryMatchMethod(boolean on)
Sets the use of "binary" hash match method flag.- Parameters:
on
- The use-binary-match-method flag.- Returns:
- true when this property container has been changed, false otherwise (or for error).
doStopAtFirstMatch
public boolean doStopAtFirstMatch()
Check for stop search of matching screen at first match.- Returns:
- true to stop search when first screen matches.
setStopAtFirstMatch
public boolean setStopAtFirstMatch(boolean on)
Check for stop search of matching screen at first match.- Parameters:
on
- The stop-at-match flag.- Returns:
- true when this property container has been changed, false otherwise (or for error).